[ 
https://issues.apache.org/jira/browse/FLINK-27246?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=17638614#comment-17638614
 ] 

Krzysztof Chmielewski edited comment on FLINK-27246 at 11/25/22 7:21 PM:
-------------------------------------------------------------------------

Hi [~TsReaper]
Im sory for a long delay. I was actyally trying to develop a PoC fix for this 
problem. I think I managed to at least proof a concept. You can find my raft PR 
here -> https://github.com/apache/flink/pull/21393  The code from this PR made 
the SQL from this ticket to compile and execute which is at least something :) 

The idea is to enhance FunctionSplitter that for every codeBlock 
(getMergedCodeBlocks method) that is bigger than "maxMethodLength" try to 
further split it by calling two new splitters that I've created:
1. BlockStatementSplitter
2. BlockStatementGrouper

The BlockStatementSplitter splits body of WHILE, IF/ELSE statements to new 
methods. The original statement is rewritten that will call those new methods. 

Next ,the *BlockStatementGrouper* is groping calls created by 
*BlockStatementSplitter*  to blocks with lengths <  "maxMethodLength" and 
extracting those to another new method. Finally *BlockStatementGrouper* 
rewrites original code block to call methods created by *BlockStatementGrouper*.

For example, an input statement:
{code:java}
while (
            (kvPair$9687 = 
(org.apache.flink.api.java.tuple.Tuple2<org.apache.flink.table.data.binary.BinaryRowData,
 org.apache.flink.table.data.binary.BinaryRowData>) iterator.next()) != null) {
            key$6207 = (org.apache.flink.table.data.binary.BinaryRowData) 
kvPair$9687.f0;
            val$9688 = (org.apache.flink.table.data.binary.BinaryRowData) 
kvPair$9687.f1;
            local$5912.replace(key$6207, val$9688);
    if (lastKey$6208 == null) {
              lastKey$6208 = key$6207.copy();
              agg0_sumIsNull = true;
        agg0_sum = ((org.apache.flink.table.data.DecimalData) null);
        agg1_sumIsNull = true;
        agg1_sum = ((org.apache.flink.table.data.DecimalData) null);
        agg3_sum = ((org.apache.flink.table.data.DecimalData) null);
        agg3_sum = ((org.apache.flink.table.data.DecimalData) null);
      } else if (lastKey$6209 == null) { 
        agg2_sum = ((org.apache.flink.table.data.DecimalData) null);
        agg3_sumIsNull = true;
} else {
        agg2_sumIsNull = true;
}};
{code}

will be converted by BlockStatementSplitter to:

{code:java}
while (
            (kvPair$9687 = 
(org.apache.flink.api.java.tuple.Tuple2<org.apache.flink.table.data.binary.BinaryRowData,
 org.apache.flink.table.data.binary.BinaryRowData>) iterator.next()) != null) {
            top_whileBody0_0();
    if (lastKey$6208 == null) {
              top_whileBody0_0_ifBody0();
      } else if (lastKey$6209 == null) { 
        top_whileBody0_0_ifBody1_ifBody0();
} else {
        top_whileBody0_0_ifBody1_ifBody1();
}};
{code}

Further this will be converted by BlockStatementGrouper with maxMethodLength 
parameter set to 4000 to:
{code:java}
while (
            (kvPair$9687 = 
(org.apache.flink.api.java.tuple.Tuple2<org.apache.flink.table.data.binary.BinaryRowData,
 org.apache.flink.table.data.binary.BinaryRowData>) iterator.next()) != null) {

            top_rewriteGroup_0();
}
{code}


Body for the new methods would be:
{code:java}
private void top_whileBody0_0_ifBody1_ifBody0 {
agg2_sum = ((org.apache.flink.table.data.DecimalData) null);
agg3_sumIsNull = true;
}

private void top_whileBody0_0_ifBody1_ifBody1 {
agg2_sumIsNull = true;
}

private void top_whileBody0_0 {
key$6207 = (org.apache.flink.table.data.binary.BinaryRowData) kvPair$9687.f0;
val$9688 = (org.apache.flink.table.data.binary.BinaryRowData) kvPair$9687.f1;
local$5912.replace(key$6207, val$9688);
}

private void top_whileBody0_0_ifBody0 {
lastKey$6208 = key$6207.copy();
agg0_sumIsNull = true;
agg0_sum = ((org.apache.flink.table.data.DecimalData) null);
agg1_sumIsNull = true;
agg1_sum = ((org.apache.flink.table.data.DecimalData) null);
agg3_sum = ((org.apache.flink.table.data.DecimalData) null);
agg3_sum = ((org.apache.flink.table.data.DecimalData) null);
}

void top_rewriteGroup_0() {
top_whileBody0_0();
if (lastKey$6208 == null) {
              top_whileBody0_0_ifBody0();
      } else if (lastKey$6209 == null) {         
        top_whileBody0_0_ifBody1_ifBody0();
  } else {       
     top_whileBody0_0_ifBody1_ifBody1();
  }
}
{code}


What do you think [~TsReaper]?




was (Author: kristoffsc):
Hi [~TsReaper]
Im sory for a long delay. I was actyally trying to develop a PoC fix for this 
problem. I think I managed to at least proof a concept. You can find my raft PR 
here -> https://github.com/apache/flink/pull/21393  The code from this PR made 
the SQL from this ticket to compile and execute which is at least something :) 

The idea is to enhance FunctionSplitter that for every codeBlock 
(getMergedCodeBlocks method) that is bigger than "maxMethodLength" try to 
further split it by calling two new splitters that I've created:
1. BlockStatementSplitter
2. BlockStatementGrouper

The BlockStatementSplitter splits body of WHILE, IF/ELSE statements to new 
methods. The original statement is rewritten that will call those new methods. 

Next ,the *BlockStatementGrouper* is groping calls created by 
*BlockStatementSplitter*  to blocks with lengths <  "maxMethodLength" and 
extracting those to another new method. Finally *BlockStatementGrouper* 
rewrites original code block to call methods created by *BlockStatementGrouper*.

For example, an input statement:
{code:java}
while (
            (kvPair$9687 = 
(org.apache.flink.api.java.tuple.Tuple2<org.apache.flink.table.data.binary.BinaryRowData,
 org.apache.flink.table.data.binary.BinaryRowData>) iterator.next()) != null) {
            key$6207 = (org.apache.flink.table.data.binary.BinaryRowData) 
kvPair$9687.f0;
            val$9688 = (org.apache.flink.table.data.binary.BinaryRowData) 
kvPair$9687.f1;
            // prepare input
            local$5912.replace(key$6207, val$9688);
    if (lastKey$6208 == null) {
              lastKey$6208 = key$6207.copy();
              agg0_sumIsNull = true;
        agg0_sum = ((org.apache.flink.table.data.DecimalData) null);
        agg1_sumIsNull = true;
        agg1_sum = ((org.apache.flink.table.data.DecimalData) null);
        agg3_sum = ((org.apache.flink.table.data.DecimalData) null);
        agg3_sum = ((org.apache.flink.table.data.DecimalData) null);
      } else if (lastKey$6209 == null) { 
        agg2_sum = ((org.apache.flink.table.data.DecimalData) null);
        agg3_sumIsNull = true;
} else {
        agg2_sumIsNull = true;
}};
{code}

will be converted by BlockStatementSplitter to:

{code:java}
while (
            (kvPair$9687 = 
(org.apache.flink.api.java.tuple.Tuple2<org.apache.flink.table.data.binary.BinaryRowData,
 org.apache.flink.table.data.binary.BinaryRowData>) iterator.next()) != null) {
            top_whileBody0_0();
    if (lastKey$6208 == null) {
              top_whileBody0_0_ifBody0();
      } else if (lastKey$6209 == null) { 
        top_whileBody0_0_ifBody1_ifBody0();
} else {
        top_whileBody0_0_ifBody1_ifBody1();
}};
{code}

Further this will be converted by BlockStatementGrouper with maxMethodLength 
parameter set to 4000 to:
{code:java}
while (
            (kvPair$9687 = 
(org.apache.flink.api.java.tuple.Tuple2<org.apache.flink.table.data.binary.BinaryRowData,
 org.apache.flink.table.data.binary.BinaryRowData>) iterator.next()) != null) {

            top_rewriteGroup_0();
}
{code}


Body for the new methods would be:
{code:java}
private void top_whileBody0_0_ifBody1_ifBody0 {
agg2_sum = ((org.apache.flink.table.data.DecimalData) null);
agg3_sumIsNull = true;
}

private void top_whileBody0_0_ifBody1_ifBody1 {
agg2_sumIsNull = true;
}

private void top_whileBody0_0 {
key$6207 = (org.apache.flink.table.data.binary.BinaryRowData) kvPair$9687.f0;
val$9688 = (org.apache.flink.table.data.binary.BinaryRowData) kvPair$9687.f1;
local$5912.replace(key$6207, val$9688);
}

private void top_whileBody0_0_ifBody0 {
lastKey$6208 = key$6207.copy();
agg0_sumIsNull = true;
agg0_sum = ((org.apache.flink.table.data.DecimalData) null);
agg1_sumIsNull = true;
agg1_sum = ((org.apache.flink.table.data.DecimalData) null);
agg3_sum = ((org.apache.flink.table.data.DecimalData) null);
agg3_sum = ((org.apache.flink.table.data.DecimalData) null);
}

void top_rewriteGroup_0() {
top_whileBody0_0();
if (lastKey$6208 == null) {
              top_whileBody0_0_ifBody0();
      } else if (lastKey$6209 == null) {         
        top_whileBody0_0_ifBody1_ifBody0();
  } else {       
     top_whileBody0_0_ifBody1_ifBody1();
  }
}
{code}


What do you think [~TsReaper]?



> Code of method 
> "processElement(Lorg/apache/flink/streaming/runtime/streamrecord/StreamRecord;)V"
>  of class "HashAggregateWithKeys$9211" grows beyond 64 KB
> ---------------------------------------------------------------------------------------------------------------------------------------------------------
>
>                 Key: FLINK-27246
>                 URL: https://issues.apache.org/jira/browse/FLINK-27246
>             Project: Flink
>          Issue Type: Bug
>          Components: Table SQL / Runtime
>    Affects Versions: 1.14.3
>            Reporter: Maciej BryƄski
>            Priority: Major
>         Attachments: endInput_falseFilter9123_split9704.txt
>
>
> I think this bug should get fixed in 
> https://issues.apache.org/jira/browse/FLINK-23007
> Unfortunately I spotted it on Flink 1.14.3
> {code}
> java.lang.RuntimeException: Could not instantiate generated class 
> 'HashAggregateWithKeys$9211'
>       at 
> org.apache.flink.table.runtime.generated.GeneratedClass.newInstance(GeneratedClass.java:85)
>  ~[flink-table_2.12-1.14.3-stream1.jar:1.14.3-stream1]
>       at 
> org.apache.flink.table.runtime.operators.CodeGenOperatorFactory.createStreamOperator(CodeGenOperatorFactory.java:40)
>  ~[flink-table_2.12-1.14.3-stream1.jar:1.14.3-stream1]
>       at 
> org.apache.flink.streaming.api.operators.StreamOperatorFactoryUtil.createOperator(StreamOperatorFactoryUtil.java:81)
>  ~[flink-dist_2.12-1.14.3-stream1.jar:1.14.3-stream1]
>       at 
> org.apache.flink.streaming.runtime.tasks.OperatorChain.<init>(OperatorChain.java:198)
>  ~[flink-dist_2.12-1.14.3-stream1.jar:1.14.3-stream1]
>       at 
> org.apache.flink.streaming.runtime.tasks.RegularOperatorChain.<init>(RegularOperatorChain.java:63)
>  ~[flink-dist_2.12-1.14.3-stream1.jar:1.14.3-stream1]
>       at 
> org.apache.flink.streaming.runtime.tasks.StreamTask.restoreInternal(StreamTask.java:666)
>  ~[flink-dist_2.12-1.14.3-stream1.jar:1.14.3-stream1]
>       at 
> org.apache.flink.streaming.runtime.tasks.StreamTask.restore(StreamTask.java:654)
>  ~[flink-dist_2.12-1.14.3-stream1.jar:1.14.3-stream1]
>       at 
> org.apache.flink.runtime.taskmanager.Task.runWithSystemExitMonitoring(Task.java:958)
>  ~[flink-dist_2.12-1.14.3-stream1.jar:1.14.3-stream1]
>       at 
> org.apache.flink.runtime.taskmanager.Task.restoreAndInvoke(Task.java:927) 
> ~[flink-dist_2.12-1.14.3-stream1.jar:1.14.3-stream1]
>       at org.apache.flink.runtime.taskmanager.Task.doRun(Task.java:766) 
> ~[flink-dist_2.12-1.14.3-stream1.jar:1.14.3-stream1]
>       at org.apache.flink.runtime.taskmanager.Task.run(Task.java:575) 
> ~[flink-dist_2.12-1.14.3-stream1.jar:1.14.3-stream1]
>       at java.lang.Thread.run(Unknown Source) ~[?:?]
> Caused by: org.apache.flink.util.FlinkRuntimeException: 
> 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.compile(CompileUtils.java:76)
>  ~[flink-table_2.12-1.14.3-stream1.jar:1.14.3-stream1]
>       at 
> org.apache.flink.table.runtime.generated.GeneratedClass.compile(GeneratedClass.java:102)
>  ~[flink-table_2.12-1.14.3-stream1.jar:1.14.3-stream1]
>       at 
> org.apache.flink.table.runtime.generated.GeneratedClass.newInstance(GeneratedClass.java:83)
>  ~[flink-table_2.12-1.14.3-stream1.jar:1.14.3-stream1]
>       ... 11 more
> Caused by: 
> org.apache.flink.shaded.guava30.com.google.common.util.concurrent.UncheckedExecutionException:
>  org.apache.flink.api.common.InvalidProgramException: Table program cannot be 
> compiled. This is a bug. Please file an issue.
>       at 
> org.apache.flink.shaded.guava30.com.google.common.cache.LocalCache$Segment.get(LocalCache.java:2051)
>  ~[flink-dist_2.12-1.14.3-stream1.jar:1.14.3-stream1]
>       at 
> org.apache.flink.shaded.guava30.com.google.common.cache.LocalCache.get(LocalCache.java:3962)
>  ~[flink-dist_2.12-1.14.3-stream1.jar:1.14.3-stream1]
>       at 
> org.apache.flink.shaded.guava30.com.google.common.cache.LocalCache$LocalManualCache.get(LocalCache.java:4859)
>  ~[flink-dist_2.12-1.14.3-stream1.jar:1.14.3-stream1]
>       at 
> org.apache.flink.table.runtime.generated.CompileUtils.compile(CompileUtils.java:74)
>  ~[flink-table_2.12-1.14.3-stream1.jar:1.14.3-stream1]
>       at 
> org.apache.flink.table.runtime.generated.GeneratedClass.compile(GeneratedClass.java:102)
>  ~[flink-table_2.12-1.14.3-stream1.jar:1.14.3-stream1]
>       at 
> org.apache.flink.table.runtime.generated.GeneratedClass.newInstance(GeneratedClass.java:83)
>  ~[flink-table_2.12-1.14.3-stream1.jar:1.14.3-stream1]
>       ... 11 more
> 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:89)
>  ~[flink-table_2.12-1.14.3-stream1.jar:1.14.3-stream1]
>       at 
> org.apache.flink.table.runtime.generated.CompileUtils.lambda$compile$1(CompileUtils.java:74)
>  ~[flink-table_2.12-1.14.3-stream1.jar:1.14.3-stream1]
>       at 
> org.apache.flink.shaded.guava30.com.google.common.cache.LocalCache$LocalManualCache$1.load(LocalCache.java:4864)
>  ~[flink-dist_2.12-1.14.3-stream1.jar:1.14.3-stream1]
>       at 
> org.apache.flink.shaded.guava30.com.google.common.cache.LocalCache$LoadingValueReference.loadFuture(LocalCache.java:3529)
>  ~[flink-dist_2.12-1.14.3-stream1.jar:1.14.3-stream1]
>       at 
> org.apache.flink.shaded.guava30.com.google.common.cache.LocalCache$Segment.loadSync(LocalCache.java:2278)
>  ~[flink-dist_2.12-1.14.3-stream1.jar:1.14.3-stream1]
>       at 
> org.apache.flink.shaded.guava30.com.google.common.cache.LocalCache$Segment.lockedGetOrLoad(LocalCache.java:2155)
>  ~[flink-dist_2.12-1.14.3-stream1.jar:1.14.3-stream1]
>       at 
> org.apache.flink.shaded.guava30.com.google.common.cache.LocalCache$Segment.get(LocalCache.java:2045)
>  ~[flink-dist_2.12-1.14.3-stream1.jar:1.14.3-stream1]
>       at 
> org.apache.flink.shaded.guava30.com.google.common.cache.LocalCache.get(LocalCache.java:3962)
>  ~[flink-dist_2.12-1.14.3-stream1.jar:1.14.3-stream1]
>       at 
> org.apache.flink.shaded.guava30.com.google.common.cache.LocalCache$LocalManualCache.get(LocalCache.java:4859)
>  ~[flink-dist_2.12-1.14.3-stream1.jar:1.14.3-stream1]
>       at 
> org.apache.flink.table.runtime.generated.CompileUtils.compile(CompileUtils.java:74)
>  ~[flink-table_2.12-1.14.3-stream1.jar:1.14.3-stream1]
>       at 
> org.apache.flink.table.runtime.generated.GeneratedClass.compile(GeneratedClass.java:102)
>  ~[flink-table_2.12-1.14.3-stream1.jar:1.14.3-stream1]
>       at 
> org.apache.flink.table.runtime.generated.GeneratedClass.newInstance(GeneratedClass.java:83)
>  ~[flink-table_2.12-1.14.3-stream1.jar:1.14.3-stream1]
>       ... 11 more
> Caused by: org.codehaus.janino.InternalCompilerException: Compiling 
> "HashAggregateWithKeys$9211": Code of method 
> "processElement(Lorg/apache/flink/streaming/runtime/streamrecord/StreamRecord;)V"
>  of class "HashAggregateWithKeys$9211" grows beyond 64 KB
>       at org.codehaus.janino.UnitCompiler.compileUnit(UnitCompiler.java:382) 
> ~[flink-table_2.12-1.14.3-stream1.jar:1.14.3-stream1]
>       at org.codehaus.janino.SimpleCompiler.cook(SimpleCompiler.java:237) 
> ~[flink-table_2.12-1.14.3-stream1.jar:1.14.3-stream1]
>       at 
> org.codehaus.janino.SimpleCompiler.compileToClassLoader(SimpleCompiler.java:465)
>  ~[flink-table_2.12-1.14.3-stream1.jar:1.14.3-stream1]
>       at org.codehaus.janino.SimpleCompiler.cook(SimpleCompiler.java:216) 
> ~[flink-table_2.12-1.14.3-stream1.jar:1.14.3-stream1]
>       at org.codehaus.janino.SimpleCompiler.cook(SimpleCompiler.java:207) 
> ~[flink-table_2.12-1.14.3-stream1.jar:1.14.3-stream1]
>       at org.codehaus.commons.compiler.Cookable.cook(Cookable.java:80) 
> ~[flink-table_2.12-1.14.3-stream1.jar:1.14.3-stream1]
>       at org.codehaus.commons.compiler.Cookable.cook(Cookable.java:75) 
> ~[flink-table_2.12-1.14.3-stream1.jar:1.14.3-stream1]
>       at 
> org.apache.flink.table.runtime.generated.CompileUtils.doCompile(CompileUtils.java:86)
>  ~[flink-table_2.12-1.14.3-stream1.jar:1.14.3-stream1]
>       at 
> org.apache.flink.table.runtime.generated.CompileUtils.lambda$compile$1(CompileUtils.java:74)
>  ~[flink-table_2.12-1.14.3-stream1.jar:1.14.3-stream1]
>       at 
> org.apache.flink.shaded.guava30.com.google.common.cache.LocalCache$LocalManualCache$1.load(LocalCache.java:4864)
>  ~[flink-dist_2.12-1.14.3-stream1.jar:1.14.3-stream1]
>       at 
> org.apache.flink.shaded.guava30.com.google.common.cache.LocalCache$LoadingValueReference.loadFuture(LocalCache.java:3529)
>  ~[flink-dist_2.12-1.14.3-stream1.jar:1.14.3-stream1]
>       at 
> org.apache.flink.shaded.guava30.com.google.common.cache.LocalCache$Segment.loadSync(LocalCache.java:2278)
>  ~[flink-dist_2.12-1.14.3-stream1.jar:1.14.3-stream1]
>       at 
> org.apache.flink.shaded.guava30.com.google.common.cache.LocalCache$Segment.lockedGetOrLoad(LocalCache.java:2155)
>  ~[flink-dist_2.12-1.14.3-stream1.jar:1.14.3-stream1]
>       at 
> org.apache.flink.shaded.guava30.com.google.common.cache.LocalCache$Segment.get(LocalCache.java:2045)
>  ~[flink-dist_2.12-1.14.3-stream1.jar:1.14.3-stream1]
>       at 
> org.apache.flink.shaded.guava30.com.google.common.cache.LocalCache.get(LocalCache.java:3962)
>  ~[flink-dist_2.12-1.14.3-stream1.jar:1.14.3-stream1]
>       at 
> org.apache.flink.shaded.guava30.com.google.common.cache.LocalCache$LocalManualCache.get(LocalCache.java:4859)
>  ~[flink-dist_2.12-1.14.3-stream1.jar:1.14.3-stream1]
>       at 
> org.apache.flink.table.runtime.generated.CompileUtils.compile(CompileUtils.java:74)
>  ~[flink-table_2.12-1.14.3-stream1.jar:1.14.3-stream1]
>       at 
> org.apache.flink.table.runtime.generated.GeneratedClass.compile(GeneratedClass.java:102)
>  ~[flink-table_2.12-1.14.3-stream1.jar:1.14.3-stream1]
>       at 
> org.apache.flink.table.runtime.generated.GeneratedClass.newInstance(GeneratedClass.java:83)
>  ~[flink-table_2.12-1.14.3-stream1.jar:1.14.3-stream1]
>       ... 11 more
> Caused by: org.codehaus.janino.InternalCompilerException: Code of method 
> "processElement(Lorg/apache/flink/streaming/runtime/streamrecord/StreamRecord;)V"
>  of class "HashAggregateWithKeys$9211" grows beyond 64 KB
>       at org.codehaus.janino.CodeContext.makeSpace(CodeContext.java:1048) 
> ~[flink-table_2.12-1.14.3-stream1.jar:1.14.3-stream1]
>       at org.codehaus.janino.CodeContext.write(CodeContext.java:940) 
> ~[flink-table_2.12-1.14.3-stream1.jar:1.14.3-stream1]
>       at org.codehaus.janino.UnitCompiler.writeShort(UnitCompiler.java:12282) 
> ~[flink-table_2.12-1.14.3-stream1.jar:1.14.3-stream1]
>       at org.codehaus.janino.UnitCompiler.load(UnitCompiler.java:11941) 
> ~[flink-table_2.12-1.14.3-stream1.jar:1.14.3-stream1]
>       at org.codehaus.janino.UnitCompiler.load(UnitCompiler.java:11926) 
> ~[flink-table_2.12-1.14.3-stream1.jar:1.14.3-stream1]
>       at org.codehaus.janino.UnitCompiler.compileGet2(UnitCompiler.java:4465) 
> ~[flink-table_2.12-1.14.3-stream1.jar:1.14.3-stream1]
>       at org.codehaus.janino.UnitCompiler.access$8000(UnitCompiler.java:215) 
> ~[flink-table_2.12-1.14.3-stream1.jar:1.14.3-stream1]
>       at 
> org.codehaus.janino.UnitCompiler$16$1.visitLocalVariableAccess(UnitCompiler.java:4408)
>  ~[flink-table_2.12-1.14.3-stream1.jar:1.14.3-stream1]
>       at 
> org.codehaus.janino.UnitCompiler$16$1.visitLocalVariableAccess(UnitCompiler.java:4400)
>  ~[flink-table_2.12-1.14.3-stream1.jar:1.14.3-stream1]
>       at org.codehaus.janino.Java$LocalVariableAccess.accept(Java.java:4274) 
> ~[flink-table_2.12-1.14.3-stream1.jar:1.14.3-stream1]
>       at 
> org.codehaus.janino.UnitCompiler$16.visitLvalue(UnitCompiler.java:4400) 
> ~[flink-table_2.12-1.14.3-stream1.jar:1.14.3-stream1]
>       at 
> org.codehaus.janino.UnitCompiler$16.visitLvalue(UnitCompiler.java:4396) 
> ~[flink-table_2.12-1.14.3-stream1.jar:1.14.3-stream1]
>       at org.codehaus.janino.Java$Lvalue.accept(Java.java:4148) 
> ~[flink-table_2.12-1.14.3-stream1.jar:1.14.3-stream1]
>       at org.codehaus.janino.UnitCompiler.compileGet(UnitCompiler.java:4396) 
> ~[flink-table_2.12-1.14.3-stream1.jar:1.14.3-stream1]
>       at org.codehaus.janino.UnitCompiler.compileGet2(UnitCompiler.java:4461) 
> ~[flink-table_2.12-1.14.3-stream1.jar:1.14.3-stream1]
>       at org.codehaus.janino.UnitCompiler.access$7500(UnitCompiler.java:215) 
> ~[flink-table_2.12-1.14.3-stream1.jar:1.14.3-stream1]
>       at 
> org.codehaus.janino.UnitCompiler$16$1.visitAmbiguousName(UnitCompiler.java:4403)
>  ~[flink-table_2.12-1.14.3-stream1.jar:1.14.3-stream1]
>       at 
> org.codehaus.janino.UnitCompiler$16$1.visitAmbiguousName(UnitCompiler.java:4400)
>  ~[flink-table_2.12-1.14.3-stream1.jar:1.14.3-stream1]
>       at org.codehaus.janino.Java$AmbiguousName.accept(Java.java:4224) 
> ~[flink-table_2.12-1.14.3-stream1.jar:1.14.3-stream1]
>       at 
> org.codehaus.janino.UnitCompiler$16.visitLvalue(UnitCompiler.java:4400) 
> ~[flink-table_2.12-1.14.3-stream1.jar:1.14.3-stream1]
>       at 
> org.codehaus.janino.UnitCompiler$16.visitLvalue(UnitCompiler.java:4396) 
> ~[flink-table_2.12-1.14.3-stream1.jar:1.14.3-stream1]
>       at org.codehaus.janino.Java$Lvalue.accept(Java.java:4148) 
> ~[flink-table_2.12-1.14.3-stream1.jar:1.14.3-stream1]
>       at org.codehaus.janino.UnitCompiler.compileGet(UnitCompiler.java:4396) 
> ~[flink-table_2.12-1.14.3-stream1.jar:1.14.3-stream1]
>       at 
> org.codehaus.janino.UnitCompiler.compileGetValue(UnitCompiler.java:5662) 
> ~[flink-table_2.12-1.14.3-stream1.jar:1.14.3-stream1]
>       at 
> org.codehaus.janino.UnitCompiler.compileBoolean2(UnitCompiler.java:4120) 
> ~[flink-table_2.12-1.14.3-stream1.jar:1.14.3-stream1]
>       at org.codehaus.janino.UnitCompiler.access$6600(UnitCompiler.java:215) 
> ~[flink-table_2.12-1.14.3-stream1.jar:1.14.3-stream1]
>       at 
> org.codehaus.janino.UnitCompiler$14.visitBinaryOperation(UnitCompiler.java:3957)
>  ~[flink-table_2.12-1.14.3-stream1.jar:1.14.3-stream1]
>       at 
> org.codehaus.janino.UnitCompiler$14.visitBinaryOperation(UnitCompiler.java:3935)
>  ~[flink-table_2.12-1.14.3-stream1.jar:1.14.3-stream1]
>       at org.codehaus.janino.Java$BinaryOperation.accept(Java.java:4864) 
> ~[flink-table_2.12-1.14.3-stream1.jar:1.14.3-stream1]
>       at 
> org.codehaus.janino.UnitCompiler.compileBoolean(UnitCompiler.java:3935) 
> ~[flink-table_2.12-1.14.3-stream1.jar:1.14.3-stream1]
>       at org.codehaus.janino.UnitCompiler.compileGet2(UnitCompiler.java:4448) 
> ~[flink-table_2.12-1.14.3-stream1.jar:1.14.3-stream1]
>       at org.codehaus.janino.UnitCompiler.compileGet2(UnitCompiler.java:5004) 
> ~[flink-table_2.12-1.14.3-stream1.jar:1.14.3-stream1]
>       at org.codehaus.janino.UnitCompiler.access$8500(UnitCompiler.java:215) 
> ~[flink-table_2.12-1.14.3-stream1.jar:1.14.3-stream1]
>       at 
> org.codehaus.janino.UnitCompiler$16.visitBinaryOperation(UnitCompiler.java:4417)
>  ~[flink-table_2.12-1.14.3-stream1.jar:1.14.3-stream1]
>       at 
> org.codehaus.janino.UnitCompiler$16.visitBinaryOperation(UnitCompiler.java:4396)
>  ~[flink-table_2.12-1.14.3-stream1.jar:1.14.3-stream1]
>       at org.codehaus.janino.Java$BinaryOperation.accept(Java.java:4864) 
> ~[flink-table_2.12-1.14.3-stream1.jar:1.14.3-stream1]
>       at org.codehaus.janino.UnitCompiler.compileGet(UnitCompiler.java:4396) 
> ~[flink-table_2.12-1.14.3-stream1.jar:1.14.3-stream1]
>       at org.codehaus.janino.UnitCompiler.compileGet2(UnitCompiler.java:5057) 
> ~[flink-table_2.12-1.14.3-stream1.jar:1.14.3-stream1]
>       at org.codehaus.janino.UnitCompiler.access$8100(UnitCompiler.java:215) 
> ~[flink-table_2.12-1.14.3-stream1.jar:1.14.3-stream1]
>       at 
> org.codehaus.janino.UnitCompiler$16$1.visitParenthesizedExpression(UnitCompiler.java:4409)
>  ~[flink-table_2.12-1.14.3-stream1.jar:1.14.3-stream1]
>       at 
> org.codehaus.janino.UnitCompiler$16$1.visitParenthesizedExpression(UnitCompiler.java:4400)
>  ~[flink-table_2.12-1.14.3-stream1.jar:1.14.3-stream1]
>       at 
> org.codehaus.janino.Java$ParenthesizedExpression.accept(Java.java:4924) 
> ~[flink-table_2.12-1.14.3-stream1.jar:1.14.3-stream1]
>       at 
> org.codehaus.janino.UnitCompiler$16.visitLvalue(UnitCompiler.java:4400) 
> ~[flink-table_2.12-1.14.3-stream1.jar:1.14.3-stream1]
>       at 
> org.codehaus.janino.UnitCompiler$16.visitLvalue(UnitCompiler.java:4396) 
> ~[flink-table_2.12-1.14.3-stream1.jar:1.14.3-stream1]
>       at org.codehaus.janino.Java$Lvalue.accept(Java.java:4148) 
> ~[flink-table_2.12-1.14.3-stream1.jar:1.14.3-stream1]
>       at org.codehaus.janino.UnitCompiler.compileGet(UnitCompiler.java:4396) 
> ~[flink-table_2.12-1.14.3-stream1.jar:1.14.3-stream1]
>       at 
> org.codehaus.janino.UnitCompiler.compileGetValue(UnitCompiler.java:5662) 
> ~[flink-table_2.12-1.14.3-stream1.jar:1.14.3-stream1]
>       at org.codehaus.janino.UnitCompiler.compile2(UnitCompiler.java:3792) 
> ~[flink-table_2.12-1.14.3-stream1.jar:1.14.3-stream1]
>       at org.codehaus.janino.UnitCompiler.access$6100(UnitCompiler.java:215) 
> ~[flink-table_2.12-1.14.3-stream1.jar:1.14.3-stream1]
>       at 
> org.codehaus.janino.UnitCompiler$13.visitAssignment(UnitCompiler.java:3754) 
> ~[flink-table_2.12-1.14.3-stream1.jar:1.14.3-stream1]
>       at 
> org.codehaus.janino.UnitCompiler$13.visitAssignment(UnitCompiler.java:3734) 
> ~[flink-table_2.12-1.14.3-stream1.jar:1.14.3-stream1]
>       at org.codehaus.janino.Java$Assignment.accept(Java.java:4477) 
> ~[flink-table_2.12-1.14.3-stream1.jar:1.14.3-stream1]
>       at org.codehaus.janino.UnitCompiler.compile(UnitCompiler.java:3734) 
> ~[flink-table_2.12-1.14.3-stream1.jar:1.14.3-stream1]
>       at org.codehaus.janino.UnitCompiler.compile2(UnitCompiler.java:2360) 
> ~[flink-table_2.12-1.14.3-stream1.jar:1.14.3-stream1]
>       at org.codehaus.janino.UnitCompiler.access$1800(UnitCompiler.java:215) 
> ~[flink-table_2.12-1.14.3-stream1.jar:1.14.3-stream1]
>       at 
> org.codehaus.janino.UnitCompiler$6.visitExpressionStatement(UnitCompiler.java:1494)
>  ~[flink-table_2.12-1.14.3-stream1.jar:1.14.3-stream1]
>       at 
> org.codehaus.janino.UnitCompiler$6.visitExpressionStatement(UnitCompiler.java:1487)
>  ~[flink-table_2.12-1.14.3-stream1.jar:1.14.3-stream1]
>       at org.codehaus.janino.Java$ExpressionStatement.accept(Java.java:2874) 
> ~[flink-table_2.12-1.14.3-stream1.jar:1.14.3-stream1]
>       at org.codehaus.janino.UnitCompiler.compile(UnitCompiler.java:1487) 
> ~[flink-table_2.12-1.14.3-stream1.jar:1.14.3-stream1]
>       at 
> org.codehaus.janino.UnitCompiler.compileStatements(UnitCompiler.java:1567) 
> ~[flink-table_2.12-1.14.3-stream1.jar:1.14.3-stream1]
>       at org.codehaus.janino.UnitCompiler.compile2(UnitCompiler.java:1553) 
> ~[flink-table_2.12-1.14.3-stream1.jar:1.14.3-stream1]
>       at org.codehaus.janino.UnitCompiler.access$1700(UnitCompiler.java:215) 
> ~[flink-table_2.12-1.14.3-stream1.jar:1.14.3-stream1]
>       at 
> org.codehaus.janino.UnitCompiler$6.visitBlock(UnitCompiler.java:1493) 
> ~[flink-table_2.12-1.14.3-stream1.jar:1.14.3-stream1]
>       at 
> org.codehaus.janino.UnitCompiler$6.visitBlock(UnitCompiler.java:1487) 
> ~[flink-table_2.12-1.14.3-stream1.jar:1.14.3-stream1]
>       at org.codehaus.janino.Java$Block.accept(Java.java:2779) 
> ~[flink-table_2.12-1.14.3-stream1.jar:1.14.3-stream1]
>       at org.codehaus.janino.UnitCompiler.compile(UnitCompiler.java:1487) 
> ~[flink-table_2.12-1.14.3-stream1.jar:1.14.3-stream1]
>       at org.codehaus.janino.UnitCompiler.compile2(UnitCompiler.java:2476) 
> ~[flink-table_2.12-1.14.3-stream1.jar:1.14.3-stream1]
>       at org.codehaus.janino.UnitCompiler.access$1900(UnitCompiler.java:215) 
> ~[flink-table_2.12-1.14.3-stream1.jar:1.14.3-stream1]
>       at 
> org.codehaus.janino.UnitCompiler$6.visitIfStatement(UnitCompiler.java:1495) 
> ~[flink-table_2.12-1.14.3-stream1.jar:1.14.3-stream1]
>       at 
> org.codehaus.janino.UnitCompiler$6.visitIfStatement(UnitCompiler.java:1487) 
> ~[flink-table_2.12-1.14.3-stream1.jar:1.14.3-stream1]
>       at org.codehaus.janino.Java$IfStatement.accept(Java.java:2950) 
> ~[flink-table_2.12-1.14.3-stream1.jar:1.14.3-stream1]
>       at org.codehaus.janino.UnitCompiler.compile(UnitCompiler.java:1487) 
> ~[flink-table_2.12-1.14.3-stream1.jar:1.14.3-stream1]
>       at 
> org.codehaus.janino.UnitCompiler.compileStatements(UnitCompiler.java:1567) 
> ~[flink-table_2.12-1.14.3-stream1.jar:1.14.3-stream1]
>       at org.codehaus.janino.UnitCompiler.compile2(UnitCompiler.java:1553) 
> ~[flink-table_2.12-1.14.3-stream1.jar:1.14.3-stream1]
>       at org.codehaus.janino.UnitCompiler.access$1700(UnitCompiler.java:215) 
> ~[flink-table_2.12-1.14.3-stream1.jar:1.14.3-stream1]
>       at 
> org.codehaus.janino.UnitCompiler$6.visitBlock(UnitCompiler.java:1493) 
> ~[flink-table_2.12-1.14.3-stream1.jar:1.14.3-stream1]
>       at 
> org.codehaus.janino.UnitCompiler$6.visitBlock(UnitCompiler.java:1487) 
> ~[flink-table_2.12-1.14.3-stream1.jar:1.14.3-stream1]
>       at org.codehaus.janino.Java$Block.accept(Java.java:2779) 
> ~[flink-table_2.12-1.14.3-stream1.jar:1.14.3-stream1]
>       at org.codehaus.janino.UnitCompiler.compile(UnitCompiler.java:1487) 
> ~[flink-table_2.12-1.14.3-stream1.jar:1.14.3-stream1]
>       at org.codehaus.janino.UnitCompiler.compile2(UnitCompiler.java:2468) 
> ~[flink-table_2.12-1.14.3-stream1.jar:1.14.3-stream1]
>       at org.codehaus.janino.UnitCompiler.access$1900(UnitCompiler.java:215) 
> ~[flink-table_2.12-1.14.3-stream1.jar:1.14.3-stream1]
>       at 
> org.codehaus.janino.UnitCompiler$6.visitIfStatement(UnitCompiler.java:1495) 
> ~[flink-table_2.12-1.14.3-stream1.jar:1.14.3-stream1]
>       at 
> org.codehaus.janino.UnitCompiler$6.visitIfStatement(UnitCompiler.java:1487) 
> ~[flink-table_2.12-1.14.3-stream1.jar:1.14.3-stream1]
>       at org.codehaus.janino.Java$IfStatement.accept(Java.java:2950) 
> ~[flink-table_2.12-1.14.3-stream1.jar:1.14.3-stream1]
>       at org.codehaus.janino.UnitCompiler.compile(UnitCompiler.java:1487) 
> ~[flink-table_2.12-1.14.3-stream1.jar:1.14.3-stream1]
>       at 
> org.codehaus.janino.UnitCompiler.compileStatements(UnitCompiler.java:1567) 
> ~[flink-table_2.12-1.14.3-stream1.jar:1.14.3-stream1]
>       at org.codehaus.janino.UnitCompiler.compile2(UnitCompiler.java:1553) 
> ~[flink-table_2.12-1.14.3-stream1.jar:1.14.3-stream1]
>       at org.codehaus.janino.UnitCompiler.access$1700(UnitCompiler.java:215) 
> ~[flink-table_2.12-1.14.3-stream1.jar:1.14.3-stream1]
>       at 
> org.codehaus.janino.UnitCompiler$6.visitBlock(UnitCompiler.java:1493) 
> ~[flink-table_2.12-1.14.3-stream1.jar:1.14.3-stream1]
>       at 
> org.codehaus.janino.UnitCompiler$6.visitBlock(UnitCompiler.java:1487) 
> ~[flink-table_2.12-1.14.3-stream1.jar:1.14.3-stream1]
>       at org.codehaus.janino.Java$Block.accept(Java.java:2779) 
> ~[flink-table_2.12-1.14.3-stream1.jar:1.14.3-stream1]
>       at org.codehaus.janino.UnitCompiler.compile(UnitCompiler.java:1487) 
> ~[flink-table_2.12-1.14.3-stream1.jar:1.14.3-stream1]
>       at org.codehaus.janino.UnitCompiler.compile2(UnitCompiler.java:2468) 
> ~[flink-table_2.12-1.14.3-stream1.jar:1.14.3-stream1]
>       at org.codehaus.janino.UnitCompiler.access$1900(UnitCompiler.java:215) 
> ~[flink-table_2.12-1.14.3-stream1.jar:1.14.3-stream1]
>       at 
> org.codehaus.janino.UnitCompiler$6.visitIfStatement(UnitCompiler.java:1495) 
> ~[flink-table_2.12-1.14.3-stream1.jar:1.14.3-stream1]
>       at 
> org.codehaus.janino.UnitCompiler$6.visitIfStatement(UnitCompiler.java:1487) 
> ~[flink-table_2.12-1.14.3-stream1.jar:1.14.3-stream1]
>       at org.codehaus.janino.Java$IfStatement.accept(Java.java:2950) 
> ~[flink-table_2.12-1.14.3-stream1.jar:1.14.3-stream1]
>       at org.codehaus.janino.UnitCompiler.compile(UnitCompiler.java:1487) 
> ~[flink-table_2.12-1.14.3-stream1.jar:1.14.3-stream1]
>       at 
> org.codehaus.janino.UnitCompiler.compileStatements(UnitCompiler.java:1567) 
> ~[flink-table_2.12-1.14.3-stream1.jar:1.14.3-stream1]
>       at org.codehaus.janino.UnitCompiler.compile2(UnitCompiler.java:1553) 
> ~[flink-table_2.12-1.14.3-stream1.jar:1.14.3-stream1]
>       at org.codehaus.janino.UnitCompiler.access$1700(UnitCompiler.java:215) 
> ~[flink-table_2.12-1.14.3-stream1.jar:1.14.3-stream1]
>       at 
> org.codehaus.janino.UnitCompiler$6.visitBlock(UnitCompiler.java:1493) 
> ~[flink-table_2.12-1.14.3-stream1.jar:1.14.3-stream1]
>       at 
> org.codehaus.janino.UnitCompiler$6.visitBlock(UnitCompiler.java:1487) 
> ~[flink-table_2.12-1.14.3-stream1.jar:1.14.3-stream1]
>       at org.codehaus.janino.Java$Block.accept(Java.java:2779) 
> ~[flink-table_2.12-1.14.3-stream1.jar:1.14.3-stream1]
>       at org.codehaus.janino.UnitCompiler.compile(UnitCompiler.java:1487) 
> ~[flink-table_2.12-1.14.3-stream1.jar:1.14.3-stream1]
>       at org.codehaus.janino.UnitCompiler.compile2(UnitCompiler.java:2468) 
> ~[flink-table_2.12-1.14.3-stream1.jar:1.14.3-stream1]
>       at org.codehaus.janino.UnitCompiler.access$1900(UnitCompiler.java:215) 
> ~[flink-table_2.12-1.14.3-stream1.jar:1.14.3-stream1]
>       at 
> org.codehaus.janino.UnitCompiler$6.visitIfStatement(UnitCompiler.java:1495) 
> ~[flink-table_2.12-1.14.3-stream1.jar:1.14.3-stream1]
>       at 
> org.codehaus.janino.UnitCompiler$6.visitIfStatement(UnitCompiler.java:1487) 
> ~[flink-table_2.12-1.14.3-stream1.jar:1.14.3-stream1]
>       at org.codehaus.janino.Java$IfStatement.accept(Java.java:2950) 
> ~[flink-table_2.12-1.14.3-stream1.jar:1.14.3-stream1]
>       at org.codehaus.janino.UnitCompiler.compile(UnitCompiler.java:1487) 
> ~[flink-table_2.12-1.14.3-stream1.jar:1.14.3-stream1]
>       at 
> org.codehaus.janino.UnitCompiler.compileStatements(UnitCompiler.java:1567) 
> ~[flink-table_2.12-1.14.3-stream1.jar:1.14.3-stream1]
>       at org.codehaus.janino.UnitCompiler.compile(UnitCompiler.java:3388) 
> ~[flink-table_2.12-1.14.3-stream1.jar:1.14.3-stream1]
>       at 
> org.codehaus.janino.UnitCompiler.compileDeclaredMethods(UnitCompiler.java:1357)
>  ~[flink-table_2.12-1.14.3-stream1.jar:1.14.3-stream1]
>       at 
> org.codehaus.janino.UnitCompiler.compileDeclaredMethods(UnitCompiler.java:1330)
>  ~[flink-table_2.12-1.14.3-stream1.jar:1.14.3-stream1]
>       at org.codehaus.janino.UnitCompiler.compile2(UnitCompiler.java:822) 
> ~[flink-table_2.12-1.14.3-stream1.jar:1.14.3-stream1]
>       at org.codehaus.janino.UnitCompiler.compile2(UnitCompiler.java:432) 
> ~[flink-table_2.12-1.14.3-stream1.jar:1.14.3-stream1]
>       at org.codehaus.janino.UnitCompiler.access$400(UnitCompiler.java:215) 
> ~[flink-table_2.12-1.14.3-stream1.jar:1.14.3-stream1]
>       at 
> org.codehaus.janino.UnitCompiler$2.visitPackageMemberClassDeclaration(UnitCompiler.java:411)
>  ~[flink-table_2.12-1.14.3-stream1.jar:1.14.3-stream1]
>       at 
> org.codehaus.janino.UnitCompiler$2.visitPackageMemberClassDeclaration(UnitCompiler.java:406)
>  ~[flink-table_2.12-1.14.3-stream1.jar:1.14.3-stream1]
>       at 
> org.codehaus.janino.Java$PackageMemberClassDeclaration.accept(Java.java:1414) 
> ~[flink-table_2.12-1.14.3-stream1.jar:1.14.3-stream1]
>       at org.codehaus.janino.UnitCompiler.compile(UnitCompiler.java:406) 
> ~[flink-table_2.12-1.14.3-stream1.jar:1.14.3-stream1]
>       at org.codehaus.janino.UnitCompiler.compileUnit(UnitCompiler.java:378) 
> ~[flink-table_2.12-1.14.3-stream1.jar:1.14.3-stream1]
>       at org.codehaus.janino.SimpleCompiler.cook(SimpleCompiler.java:237) 
> ~[flink-table_2.12-1.14.3-stream1.jar:1.14.3-stream1]
>       at 
> org.codehaus.janino.SimpleCompiler.compileToClassLoader(SimpleCompiler.java:465)
>  ~[flink-table_2.12-1.14.3-stream1.jar:1.14.3-stream1]
>       at org.codehaus.janino.SimpleCompiler.cook(SimpleCompiler.java:216) 
> ~[flink-table_2.12-1.14.3-stream1.jar:1.14.3-stream1]
>       at org.codehaus.janino.SimpleCompiler.cook(SimpleCompiler.java:207) 
> ~[flink-table_2.12-1.14.3-stream1.jar:1.14.3-stream1]
>       at org.codehaus.commons.compiler.Cookable.cook(Cookable.java:80) 
> ~[flink-table_2.12-1.14.3-stream1.jar:1.14.3-stream1]
>       at org.codehaus.commons.compiler.Cookable.cook(Cookable.java:75) 
> ~[flink-table_2.12-1.14.3-stream1.jar:1.14.3-stream1]
>       at 
> org.apache.flink.table.runtime.generated.CompileUtils.doCompile(CompileUtils.java:86)
>  ~[flink-table_2.12-1.14.3-stream1.jar:1.14.3-stream1]
>       at 
> org.apache.flink.table.runtime.generated.CompileUtils.lambda$compile$1(CompileUtils.java:74)
>  ~[flink-table_2.12-1.14.3-stream1.jar:1.14.3-stream1]
>       at 
> org.apache.flink.shaded.guava30.com.google.common.cache.LocalCache$LocalManualCache$1.load(LocalCache.java:4864)
>  ~[flink-dist_2.12-1.14.3-stream1.jar:1.14.3-stream1]
>       at 
> org.apache.flink.shaded.guava30.com.google.common.cache.LocalCache$LoadingValueReference.loadFuture(LocalCache.java:3529)
>  ~[flink-dist_2.12-1.14.3-stream1.jar:1.14.3-stream1]
>       at 
> org.apache.flink.shaded.guava30.com.google.common.cache.LocalCache$Segment.loadSync(LocalCache.java:2278)
>  ~[flink-dist_2.12-1.14.3-stream1.jar:1.14.3-stream1]
>       at 
> org.apache.flink.shaded.guava30.com.google.common.cache.LocalCache$Segment.lockedGetOrLoad(LocalCache.java:2155)
>  ~[flink-dist_2.12-1.14.3-stream1.jar:1.14.3-stream1]
>       at 
> org.apache.flink.shaded.guava30.com.google.common.cache.LocalCache$Segment.get(LocalCache.java:2045)
>  ~[flink-dist_2.12-1.14.3-stream1.jar:1.14.3-stream1]
>       at 
> org.apache.flink.shaded.guava30.com.google.common.cache.LocalCache.get(LocalCache.java:3962)
>  ~[flink-dist_2.12-1.14.3-stream1.jar:1.14.3-stream1]
>       at 
> org.apache.flink.shaded.guava30.com.google.common.cache.LocalCache$LocalManualCache.get(LocalCache.java:4859)
>  ~[flink-dist_2.12-1.14.3-stream1.jar:1.14.3-stream1]
>       at 
> org.apache.flink.table.runtime.generated.CompileUtils.compile(CompileUtils.java:74)
>  ~[flink-table_2.12-1.14.3-stream1.jar:1.14.3-stream1]
>       at 
> org.apache.flink.table.runtime.generated.GeneratedClass.compile(GeneratedClass.java:102)
>  ~[flink-table_2.12-1.14.3-stream1.jar:1.14.3-stream1]
>       at 
> org.apache.flink.table.runtime.generated.GeneratedClass.newInstance(GeneratedClass.java:83)
>  ~[flink-table_2.12-1.14.3-stream1.jar:1.14.3-stream1]
>       ... 11 more
> {code}



--
This message was sent by Atlassian Jira
(v8.20.10#820010)

Reply via email to