You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@flink.apache.org by "Jark Wu (Jira)" <ji...@apache.org> on 2020/01/01 02:28:00 UTC

[jira] [Updated] (FLINK-15409) Fix code generation in windowed join function

     [ https://issues.apache.org/jira/browse/FLINK-15409?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Jark Wu updated FLINK-15409:
----------------------------
    Summary: Fix code generation in windowed join function  (was: Add semicolon to WindowJoinUtil#generateJoinFunction '$collectorTerm.collect($joinedRow)' statement)

> Fix code generation in windowed join function
> ---------------------------------------------
>
>                 Key: FLINK-15409
>                 URL: https://issues.apache.org/jira/browse/FLINK-15409
>             Project: Flink
>          Issue Type: Bug
>          Components: Table SQL / Planner
>    Affects Versions: 1.9.1
>            Reporter: hailong wang
>            Assignee: hailong wang
>            Priority: Major
>              Labels: pull-request-available
>             Fix For: 1.10.0
>
>          Time Spent: 20m
>  Remaining Estimate: 0h
>
> In WindowJoinUtil#generateJoinFunction, When otherCondition is none, it will go into  statement:
> {code:java}
> case None =>
>   s"""
>      |$buildJoinedRow
>      |$collectorTerm.collect($joinedRow)
>      |""".stripMargin
> {code}
> And it miss a semicolon after collet($joinedRow). This will cause compile fail:
> {code:java}
> Caused by: org.apache.flink.api.common.InvalidProgramException: Table program cannot be compiled. This is a bug. Please file an issue.Caused by: org.apache.flink.api.common.InvalidProgramException: Table program cannot be compiled. This is a bug. Please file an issue. at org.apache.flink.table.runtime.generated.CompileUtils.doCompile(CompileUtils.java:81) at org.apache.flink.table.runtime.generated.CompileUtils.compile(CompileUtils.java:65) at org.apache.flink.table.runtime.generated.GeneratedClass.compile(GeneratedClass.java:78) at org.apache.flink.table.runtime.generated.GeneratedClass.newInstance(GeneratedClass.java:52) ... 26 moreCaused by: org.codehaus.commons.compiler.CompileException: Line 28, Column 21: Expression "c.collect(joinedRow)" is not a type
> {code}
>  



--
This message was sent by Atlassian Jira
(v8.3.4#803005)