Martijn Visser created FLINK-25681:
--------------------------------------

             Summary: CodeSplitITCase produces large stacktraces and 
potentially out of memory errors
                 Key: FLINK-25681
                 URL: https://issues.apache.org/jira/browse/FLINK-25681
             Project: Flink
          Issue Type: Bug
          Components: Table SQL / API, Table SQL / Planner
            Reporter: Martijn Visser


There's currently an open PR https://github.com/apache/flink/pull/18368 to 
enforce memory limits for Docker containers to mitigate or resolve 
[https://issues.apache.org/jira/browse/FLINK-18356|https://issues.apache.org/jira/browse/FLINK-18356?focusedCommentId=17476183&page=com.atlassian.jira.plugin.system.issuetabpanels%3Acomment-tabpanel#comment-17476183]

As mentioned in the above Flink ticket, the table tests fail. A run can be 
found at 
https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=29461

When looking into the logs, I noticed that there are large stacktraces reported 
on org.apache.flink.table.planner.runtime.batch.sql.CodeSplitITCase. 

The logs show numerous errors for 

* 
{{testSelectManyColumns(org.apache.flink.table.planner.runtime.batch.sql.CodeSplitITCase)}}
* 
{{testManyAggregations(org.apache.flink.table.planner.runtime.batch.sql.CodeSplitITCase)}}
 
* 
{{testManyOrsInCondition(org.apache.flink.table.planner.runtime.batch.sql.CodeSplitITCase)}}

Some examples:

{code:java}
08:43:03,192 [flink-akka.actor.default-dispatcher-5] INFO  
org.apache.flink.runtime.executiongraph.ExecutionGraph       [] - 
HashAggregate[30254] -> Sink: Collect table sink (1/1) 
(c515430ab543bf59471fce8c77f83ad7) switched from INITIALIZING to FAILED on 
efa7d996-3752-473e-87ff-66b403a09f38 @ localhost (dataPort=-1).
java.lang.RuntimeException: Could not instantiate generated class 
'NoGroupingAggregateWithoutKeys$363111'
        at 
org.apache.flink.table.runtime.generated.GeneratedClass.newInstance(GeneratedClass.java:85)
 ~[flink-table-runtime-1.15-SNAPSHOT.jar:1.15-SNAPSHOT]
        at 
org.apache.flink.table.runtime.operators.CodeGenOperatorFactory.createStreamOperator(CodeGenOperatorFactory.java:40)
 ~[flink-table-runtime-1.15-SNAPSHOT.jar:1.15-SNAPSHOT]
        at 
org.apache.flink.streaming.api.operators.StreamOperatorFactoryUtil.createOperator(StreamOperatorFactoryUtil.java:81)
 ~[flink-streaming-java-1.15-SNAPSHOT.jar:1.15-SNAPSHOT]
        at 
org.apache.flink.streaming.runtime.tasks.OperatorChain.<init>(OperatorChain.java:201)
 ~[flink-streaming-java-1.15-SNAPSHOT.jar:1.15-SNAPSHOT]
        at 
org.apache.flink.streaming.runtime.tasks.RegularOperatorChain.<init>(RegularOperatorChain.java:60)
 ~[flink-streaming-java-1.15-SNAPSHOT.jar:1.15-SNAPSHOT]
        at 
org.apache.flink.streaming.runtime.tasks.StreamTask.restoreInternal(StreamTask.java:653)
 ~[flink-streaming-java-1.15-SNAPSHOT.jar:1.15-SNAPSHOT]
        at 
org.apache.flink.streaming.runtime.tasks.StreamTask.restore(StreamTask.java:641)
 ~[flink-streaming-java-1.15-SNAPSHOT.jar:1.15-SNAPSHOT]
        at 
org.apache.flink.runtime.taskmanager.Task.runWithSystemExitMonitoring(Task.java:948)
 ~[flink-runtime-1.15-SNAPSHOT.jar:1.15-SNAPSHOT]
        at 
org.apache.flink.runtime.taskmanager.Task.restoreAndInvoke(Task.java:917) 
~[flink-runtime-1.15-SNAPSHOT.jar:1.15-SNAPSHOT]
        at org.apache.flink.runtime.taskmanager.Task.doRun(Task.java:741) 
~[flink-runtime-1.15-SNAPSHOT.jar:1.15-SNAPSHOT]
        at org.apache.flink.runtime.taskmanager.Task.run(Task.java:563) 
~[flink-runtime-1.15-SNAPSHOT.jar:1.15-SNAPSHOT]
        at java.lang.Thread.run(Thread.java:748) ~[?:1.8.0_292]
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:86)
 ~[flink-table-runtime-1.15-SNAPSHOT.jar:1.15-SNAPSHOT]
        at 
org.apache.flink.table.runtime.generated.GeneratedClass.compile(GeneratedClass.java:102)
 ~[flink-table-runtime-1.15-SNAPSHOT.jar:1.15-SNAPSHOT]
        at 
org.apache.flink.table.runtime.generated.GeneratedClass.newInstance(GeneratedClass.java:83)
 ~[flink-table-runtime-1.15-SNAPSHOT.jar:1.15-SNAPSHOT]
        ... 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-shaded-guava-30.1.1-jre-14.0.jar:30.1.1-jre-14.0]
        at 
org.apache.flink.shaded.guava30.com.google.common.cache.LocalCache.get(LocalCache.java:3962)
 ~[flink-shaded-guava-30.1.1-jre-14.0.jar:30.1.1-jre-14.0]
        at 
org.apache.flink.shaded.guava30.com.google.common.cache.LocalCache$LocalManualCache.get(LocalCache.java:4859)
 ~[flink-shaded-guava-30.1.1-jre-14.0.jar:30.1.1-jre-14.0]
        at 
org.apache.flink.table.runtime.generated.CompileUtils.compile(CompileUtils.java:84)
 ~[flink-table-runtime-1.15-SNAPSHOT.jar:1.15-SNAPSHOT]
        at 
org.apache.flink.table.runtime.generated.GeneratedClass.compile(GeneratedClass.java:102)
 ~[flink-table-runtime-1.15-SNAPSHOT.jar:1.15-SNAPSHOT]
        at 
org.apache.flink.table.runtime.generated.GeneratedClass.newInstance(GeneratedClass.java:83)
 ~[flink-table-runtime-1.15-SNAPSHOT.jar:1.15-SNAPSHOT]
        ... 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:99)
 ~[flink-table-runtime-1.15-SNAPSHOT.jar:1.15-SNAPSHOT]
        at 
org.apache.flink.table.runtime.generated.CompileUtils.lambda$compile$1(CompileUtils.java:84)
 ~[flink-table-runtime-1.15-SNAPSHOT.jar:1.15-SNAPSHOT]
        at 
org.apache.flink.shaded.guava30.com.google.common.cache.LocalCache$LocalManualCache$1.load(LocalCache.java:4864)
 ~[flink-shaded-guava-30.1.1-jre-14.0.jar:30.1.1-jre-14.0]
        at 
org.apache.flink.shaded.guava30.com.google.common.cache.LocalCache$LoadingValueReference.loadFuture(LocalCache.java:3529)
 ~[flink-shaded-guava-30.1.1-jre-14.0.jar:30.1.1-jre-14.0]
        at 
org.apache.flink.shaded.guava30.com.google.common.cache.LocalCache$Segment.loadSync(LocalCache.java:2278)
 ~[flink-shaded-guava-30.1.1-jre-14.0.jar:30.1.1-jre-14.0]
        at 
org.apache.flink.shaded.guava30.com.google.common.cache.LocalCache$Segment.lockedGetOrLoad(LocalCache.java:2155)
 ~[flink-shaded-guava-30.1.1-jre-14.0.jar:30.1.1-jre-14.0]
        at 
org.apache.flink.shaded.guava30.com.google.common.cache.LocalCache$Segment.get(LocalCache.java:2045)
 ~[flink-shaded-guava-30.1.1-jre-14.0.jar:30.1.1-jre-14.0]
        at 
org.apache.flink.shaded.guava30.com.google.common.cache.LocalCache.get(LocalCache.java:3962)
 ~[flink-shaded-guava-30.1.1-jre-14.0.jar:30.1.1-jre-14.0]
        at 
org.apache.flink.shaded.guava30.com.google.common.cache.LocalCache$LocalManualCache.get(LocalCache.java:4859)
 ~[flink-shaded-guava-30.1.1-jre-14.0.jar:30.1.1-jre-14.0]
        at 
org.apache.flink.table.runtime.generated.CompileUtils.compile(CompileUtils.java:84)
 ~[flink-table-runtime-1.15-SNAPSHOT.jar:1.15-SNAPSHOT]
        at 
org.apache.flink.table.runtime.generated.GeneratedClass.compile(GeneratedClass.java:102)
 ~[flink-table-runtime-1.15-SNAPSHOT.jar:1.15-SNAPSHOT]
        at 
org.apache.flink.table.runtime.generated.GeneratedClass.newInstance(GeneratedClass.java:83)
 ~[flink-table-runtime-1.15-SNAPSHOT.jar:1.15-SNAPSHOT]
        ... 11 more
Caused by: org.codehaus.janino.InternalCompilerException: Compiling 
"NoGroupingAggregateWithoutKeys$363111": Code of method 
"processElement(Lorg/apache/flink/streaming/runtime/streamrecord/StreamRecord;)V"
 of class "NoGroupingAggregateWithoutKeys$363111" grows beyond 64 KB
        at org.codehaus.janino.UnitCompiler.compileUnit(UnitCompiler.java:382) 
~[janino-3.0.11.jar:?]
        at org.codehaus.janino.SimpleCompiler.cook(SimpleCompiler.java:237) 
~[janino-3.0.11.jar:?]
        at 
org.codehaus.janino.SimpleCompiler.compileToClassLoader(SimpleCompiler.java:465)
 ~[janino-3.0.11.jar:?]
        at org.codehaus.janino.SimpleCompiler.cook(SimpleCompiler.java:216) 
~[janino-3.0.11.jar:?]
        at org.codehaus.janino.SimpleCompiler.cook(SimpleCompiler.java:207) 
~[janino-3.0.11.jar:?]
        at org.codehaus.commons.compiler.Cookable.cook(Cookable.java:80) 
~[commons-compiler-3.0.11.jar:?]
        at org.codehaus.commons.compiler.Cookable.cook(Cookable.java:75) 
~[commons-compiler-3.0.11.jar:?]
        at 
org.apache.flink.table.runtime.generated.CompileUtils.doCompile(CompileUtils.java:96)
 ~[flink-table-runtime-1.15-SNAPSHOT.jar:1.15-SNAPSHOT]
        at 
org.apache.flink.table.runtime.generated.CompileUtils.lambda$compile$1(CompileUtils.java:84)
 ~[flink-table-runtime-1.15-SNAPSHOT.jar:1.15-SNAPSHOT]
        at 
org.apache.flink.shaded.guava30.com.google.common.cache.LocalCache$LocalManualCache$1.load(LocalCache.java:4864)
 ~[flink-shaded-guava-30.1.1-jre-14.0.jar:30.1.1-jre-14.0]
        at 
org.apache.flink.shaded.guava30.com.google.common.cache.LocalCache$LoadingValueReference.loadFuture(LocalCache.java:3529)
 ~[flink-shaded-guava-30.1.1-jre-14.0.jar:30.1.1-jre-14.0]
        at 
org.apache.flink.shaded.guava30.com.google.common.cache.LocalCache$Segment.loadSync(LocalCache.java:2278)
 ~[flink-shaded-guava-30.1.1-jre-14.0.jar:30.1.1-jre-14.0]
        at 
org.apache.flink.shaded.guava30.com.google.common.cache.LocalCache$Segment.lockedGetOrLoad(LocalCache.java:2155)
 ~[flink-shaded-guava-30.1.1-jre-14.0.jar:30.1.1-jre-14.0]
        at 
org.apache.flink.shaded.guava30.com.google.common.cache.LocalCache$Segment.get(LocalCache.java:2045)
 ~[flink-shaded-guava-30.1.1-jre-14.0.jar:30.1.1-jre-14.0]
        at 
org.apache.flink.shaded.guava30.com.google.common.cache.LocalCache.get(LocalCache.java:3962)
 ~[flink-shaded-guava-30.1.1-jre-14.0.jar:30.1.1-jre-14.0]
        at 
org.apache.flink.shaded.guava30.com.google.common.cache.LocalCache$LocalManualCache.get(LocalCache.java:4859)
 ~[flink-shaded-guava-30.1.1-jre-14.0.jar:30.1.1-jre-14.0]
        at 
org.apache.flink.table.runtime.generated.CompileUtils.compile(CompileUtils.java:84)
 ~[flink-table-runtime-1.15-SNAPSHOT.jar:1.15-SNAPSHOT]
        at 
org.apache.flink.table.runtime.generated.GeneratedClass.compile(GeneratedClass.java:102)
 ~[flink-table-runtime-1.15-SNAPSHOT.jar:1.15-SNAPSHOT]
        at 
org.apache.flink.table.runtime.generated.GeneratedClass.newInstance(GeneratedClass.java:83)
 ~[flink-table-runtime-1.15-SNAPSHOT.jar:1.15-SNAPSHOT]
        ... 11 more
Caused by: org.codehaus.janino.InternalCompilerException: Code of method 
"processElement(Lorg/apache/flink/streaming/runtime/streamrecord/StreamRecord;)V"
 of class "NoGroupingAggregateWithoutKeys$363111" grows beyond 64 KB
        at org.codehaus.janino.CodeContext.makeSpace(CodeContext.java:1048) 
~[janino-3.0.11.jar:?]
        at org.codehaus.janino.CodeContext.write(CodeContext.java:940) 
~[janino-3.0.11.jar:?]
        at org.codehaus.janino.UnitCompiler.writeShort(UnitCompiler.java:12282) 
~[janino-3.0.11.jar:?]
        at org.codehaus.janino.UnitCompiler.load(UnitCompiler.java:11941) 
~[janino-3.0.11.jar:?]
        at org.codehaus.janino.UnitCompiler.load(UnitCompiler.java:11926) 
~[janino-3.0.11.jar:?]
        at org.codehaus.janino.UnitCompiler.compileGet2(UnitCompiler.java:4465) 
~[janino-3.0.11.jar:?]
        at org.codehaus.janino.UnitCompiler.access$8000(UnitCompiler.java:215) 
~[janino-3.0.11.jar:?]
        at 
org.codehaus.janino.UnitCompiler$16$1.visitLocalVariableAccess(UnitCompiler.java:4408)
 ~[janino-3.0.11.jar:?]
        at 
org.codehaus.janino.UnitCompiler$16$1.visitLocalVariableAccess(UnitCompiler.java:4400)
 ~[janino-3.0.11.jar:?]
        at org.codehaus.janino.Java$LocalVariableAccess.accept(Java.java:4274) 
~[janino-3.0.11.jar:?]
        at 
org.codehaus.janino.UnitCompiler$16.visitLvalue(UnitCompiler.java:4400) 
~[janino-3.0.11.jar:?]
        at 
org.codehaus.janino.UnitCompiler$16.visitLvalue(UnitCompiler.java:4396) 
~[janino-3.0.11.jar:?]
        at org.codehaus.janino.Java$Lvalue.accept(Java.java:4148) 
~[janino-3.0.11.jar:?]
        at org.codehaus.janino.UnitCompiler.compileGet(UnitCompiler.java:4396) 
~[janino-3.0.11.jar:?]
        at org.codehaus.janino.UnitCompiler.compileGet2(UnitCompiler.java:4461) 
~[janino-3.0.11.jar:?]
        at org.codehaus.janino.UnitCompiler.access$7500(UnitCompiler.java:215) 
~[janino-3.0.11.jar:?]
        at 
org.codehaus.janino.UnitCompiler$16$1.visitAmbiguousName(UnitCompiler.java:4403)
 ~[janino-3.0.11.jar:?]
        at 
org.codehaus.janino.UnitCompiler$16$1.visitAmbiguousName(UnitCompiler.java:4400)
 ~[janino-3.0.11.jar:?]
        at org.codehaus.janino.Java$AmbiguousName.accept(Java.java:4224) 
~[janino-3.0.11.jar:?]
        at 
org.codehaus.janino.UnitCompiler$16.visitLvalue(UnitCompiler.java:4400) 
~[janino-3.0.11.jar:?]
        at 
org.codehaus.janino.UnitCompiler$16.visitLvalue(UnitCompiler.java:4396) 
~[janino-3.0.11.jar:?]
        at org.codehaus.janino.Java$Lvalue.accept(Java.java:4148) 
~[janino-3.0.11.jar:?]
        at org.codehaus.janino.UnitCompiler.compileGet(UnitCompiler.java:4396) 
~[janino-3.0.11.jar:?]
        at 
org.codehaus.janino.UnitCompiler.compileGetValue(UnitCompiler.java:5662) 
~[janino-3.0.11.jar:?]
        at 
org.codehaus.janino.UnitCompiler.compileBoolean2(UnitCompiler.java:3988) 
~[janino-3.0.11.jar:?]
        at org.codehaus.janino.UnitCompiler.access$6300(UnitCompiler.java:215) 
~[janino-3.0.11.jar:?]
        at 
org.codehaus.janino.UnitCompiler$14$1.visitAmbiguousName(UnitCompiler.java:3942)
 ~[janino-3.0.11.jar:?]
        at 
org.codehaus.janino.UnitCompiler$14$1.visitAmbiguousName(UnitCompiler.java:3939)
 ~[janino-3.0.11.jar:?]
        at org.codehaus.janino.Java$AmbiguousName.accept(Java.java:4224) 
~[janino-3.0.11.jar:?]
        at 
org.codehaus.janino.UnitCompiler$14.visitLvalue(UnitCompiler.java:3939) 
~[janino-3.0.11.jar:?]
        at 
org.codehaus.janino.UnitCompiler$14.visitLvalue(UnitCompiler.java:3935) 
~[janino-3.0.11.jar:?]
        at org.codehaus.janino.Java$Lvalue.accept(Java.java:4148) 
~[janino-3.0.11.jar:?]
        at 
org.codehaus.janino.UnitCompiler.compileBoolean(UnitCompiler.java:3935) 
~[janino-3.0.11.jar:?]
        at 
org.codehaus.janino.UnitCompiler.compileBoolean2(UnitCompiler.java:4006) 
~[janino-3.0.11.jar:?]
        at org.codehaus.janino.UnitCompiler.access$6500(UnitCompiler.java:215) 
~[janino-3.0.11.jar:?]
        at 
org.codehaus.janino.UnitCompiler$14.visitUnaryOperation(UnitCompiler.java:3956) 
~[janino-3.0.11.jar:?]
        at 
org.codehaus.janino.UnitCompiler$14.visitUnaryOperation(UnitCompiler.java:3935) 
~[janino-3.0.11.jar:?]
        at org.codehaus.janino.Java$UnaryOperation.accept(Java.java:4730) 
~[janino-3.0.11.jar:?]
        at 
org.codehaus.janino.UnitCompiler.compileBoolean(UnitCompiler.java:3935) 
~[janino-3.0.11.jar:?]
        at org.codehaus.janino.UnitCompiler.compile2(UnitCompiler.java:2475) 
~[janino-3.0.11.jar:?]
        at org.codehaus.janino.UnitCompiler.access$1900(UnitCompiler.java:215) 
~[janino-3.0.11.jar:?]
        at 
org.codehaus.janino.UnitCompiler$6.visitIfStatement(UnitCompiler.java:1495) 
~[janino-3.0.11.jar:?]
        at 
org.codehaus.janino.UnitCompiler$6.visitIfStatement(UnitCompiler.java:1487) 
~[janino-3.0.11.jar:?]
        at org.codehaus.janino.Java$IfStatement.accept(Java.java:2950) 
~[janino-3.0.11.jar:?]
        at org.codehaus.janino.UnitCompiler.compile(UnitCompiler.java:1487) 
~[janino-3.0.11.jar:?]
        at 
org.codehaus.janino.UnitCompiler.compileStatements(UnitCompiler.java:1567) 
~[janino-3.0.11.jar:?]
        at org.codehaus.janino.UnitCompiler.compile2(UnitCompiler.java:1553) 
~[janino-3.0.11.jar:?]
        at org.codehaus.janino.UnitCompiler.access$1700(UnitCompiler.java:215) 
~[janino-3.0.11.jar:?]
        at 
org.codehaus.janino.UnitCompiler$6.visitBlock(UnitCompiler.java:1493) 
~[janino-3.0.11.jar:?]
        at 
org.codehaus.janino.UnitCompiler$6.visitBlock(UnitCompiler.java:1487) 
~[janino-3.0.11.jar:?]
        at org.codehaus.janino.Java$Block.accept(Java.java:2779) 
~[janino-3.0.11.jar:?]
        at org.codehaus.janino.UnitCompiler.compile(UnitCompiler.java:1487) 
~[janino-3.0.11.jar:?]
        at org.codehaus.janino.UnitCompiler.compile2(UnitCompiler.java:2468) 
~[janino-3.0.11.jar:?]
        at org.codehaus.janino.UnitCompiler.access$1900(UnitCompiler.java:215) 
~[janino-3.0.11.jar:?]
        at 
org.codehaus.janino.UnitCompiler$6.visitIfStatement(UnitCompiler.java:1495) 
~[janino-3.0.11.jar:?]
        at 
org.codehaus.janino.UnitCompiler$6.visitIfStatement(UnitCompiler.java:1487) 
~[janino-3.0.11.jar:?]
        at org.codehaus.janino.Java$IfStatement.accept(Java.java:2950) 
~[janino-3.0.11.jar:?]
        at org.codehaus.janino.UnitCompiler.compile(UnitCompiler.java:1487) 
~[janino-3.0.11.jar:?]
        at 
org.codehaus.janino.UnitCompiler.compileStatements(UnitCompiler.java:1567) 
~[janino-3.0.11.jar:?]
        at org.codehaus.janino.UnitCompiler.compile2(UnitCompiler.java:1553) 
~[janino-3.0.11.jar:?]
        at org.codehaus.janino.UnitCompiler.access$1700(UnitCompiler.java:215) 
~[janino-3.0.11.jar:?]
        at 
org.codehaus.janino.UnitCompiler$6.visitBlock(UnitCompiler.java:1493) 
~[janino-3.0.11.jar:?]
        at 
org.codehaus.janino.UnitCompiler$6.visitBlock(UnitCompiler.java:1487) 
~[janino-3.0.11.jar:?]
        at org.codehaus.janino.Java$Block.accept(Java.java:2779) 
~[janino-3.0.11.jar:?]
        at org.codehaus.janino.UnitCompiler.compile(UnitCompiler.java:1487) 
~[janino-3.0.11.jar:?]
        at org.codehaus.janino.UnitCompiler.compile2(UnitCompiler.java:2468) 
~[janino-3.0.11.jar:?]
        at org.codehaus.janino.UnitCompiler.access$1900(UnitCompiler.java:215) 
~[janino-3.0.11.jar:?]
        at 
org.codehaus.janino.UnitCompiler$6.visitIfStatement(UnitCompiler.java:1495) 
~[janino-3.0.11.jar:?]
        at 
org.codehaus.janino.UnitCompiler$6.visitIfStatement(UnitCompiler.java:1487) 
~[janino-3.0.11.jar:?]
        at org.codehaus.janino.Java$IfStatement.accept(Java.java:2950) 
~[janino-3.0.11.jar:?]
        at org.codehaus.janino.UnitCompiler.compile(UnitCompiler.java:1487) 
~[janino-3.0.11.jar:?]
        at 
org.codehaus.janino.UnitCompiler.compileStatements(UnitCompiler.java:1567) 
~[janino-3.0.11.jar:?]
        at org.codehaus.janino.UnitCompiler.compile(UnitCompiler.java:3388) 
~[janino-3.0.11.jar:?]
        at 
org.codehaus.janino.UnitCompiler.compileDeclaredMethods(UnitCompiler.java:1357) 
~[janino-3.0.11.jar:?]
        at 
org.codehaus.janino.UnitCompiler.compileDeclaredMethods(UnitCompiler.java:1330) 
~[janino-3.0.11.jar:?]
        at org.codehaus.janino.UnitCompiler.compile2(UnitCompiler.java:822) 
~[janino-3.0.11.jar:?]
        at org.codehaus.janino.UnitCompiler.compile2(UnitCompiler.java:432) 
~[janino-3.0.11.jar:?]
        at org.codehaus.janino.UnitCompiler.access$400(UnitCompiler.java:215) 
~[janino-3.0.11.jar:?]
        at 
org.codehaus.janino.UnitCompiler$2.visitPackageMemberClassDeclaration(UnitCompiler.java:411)
 ~[janino-3.0.11.jar:?]
        at 
org.codehaus.janino.UnitCompiler$2.visitPackageMemberClassDeclaration(UnitCompiler.java:406)
 ~[janino-3.0.11.jar:?]
        at 
org.codehaus.janino.Java$PackageMemberClassDeclaration.accept(Java.java:1414) 
~[janino-3.0.11.jar:?]
        at org.codehaus.janino.UnitCompiler.compile(UnitCompiler.java:406) 
~[janino-3.0.11.jar:?]
        at org.codehaus.janino.UnitCompiler.compileUnit(UnitCompiler.java:378) 
~[janino-3.0.11.jar:?]
        at org.codehaus.janino.SimpleCompiler.cook(SimpleCompiler.java:237) 
~[janino-3.0.11.jar:?]
        at 
org.codehaus.janino.SimpleCompiler.compileToClassLoader(SimpleCompiler.java:465)
 ~[janino-3.0.11.jar:?]
        at org.codehaus.janino.SimpleCompiler.cook(SimpleCompiler.java:216) 
~[janino-3.0.11.jar:?]
        at org.codehaus.janino.SimpleCompiler.cook(SimpleCompiler.java:207) 
~[janino-3.0.11.jar:?]
        at org.codehaus.commons.compiler.Cookable.cook(Cookable.java:80) 
~[commons-compiler-3.0.11.jar:?]
        at org.codehaus.commons.compiler.Cookable.cook(Cookable.java:75) 
~[commons-compiler-3.0.11.jar:?]
        at 
org.apache.flink.table.runtime.generated.CompileUtils.doCompile(CompileUtils.java:96)
 ~[flink-table-runtime-1.15-SNAPSHOT.jar:1.15-SNAPSHOT]
        at 
org.apache.flink.table.runtime.generated.CompileUtils.lambda$compile$1(CompileUtils.java:84)
 ~[flink-table-runtime-1.15-SNAPSHOT.jar:1.15-SNAPSHOT]
        at 
org.apache.flink.shaded.guava30.com.google.common.cache.LocalCache$LocalManualCache$1.load(LocalCache.java:4864)
 ~[flink-shaded-guava-30.1.1-jre-14.0.jar:30.1.1-jre-14.0]
        at 
org.apache.flink.shaded.guava30.com.google.common.cache.LocalCache$LoadingValueReference.loadFuture(LocalCache.java:3529)
 ~[flink-shaded-guava-30.1.1-jre-14.0.jar:30.1.1-jre-14.0]
        at 
org.apache.flink.shaded.guava30.com.google.common.cache.LocalCache$Segment.loadSync(LocalCache.java:2278)
 ~[flink-shaded-guava-30.1.1-jre-14.0.jar:30.1.1-jre-14.0]
        at 
org.apache.flink.shaded.guava30.com.google.common.cache.LocalCache$Segment.lockedGetOrLoad(LocalCache.java:2155)
 ~[flink-shaded-guava-30.1.1-jre-14.0.jar:30.1.1-jre-14.0]
        at 
org.apache.flink.shaded.guava30.com.google.common.cache.LocalCache$Segment.get(LocalCache.java:2045)
 ~[flink-shaded-guava-30.1.1-jre-14.0.jar:30.1.1-jre-14.0]
        at 
org.apache.flink.shaded.guava30.com.google.common.cache.LocalCache.get(LocalCache.java:3962)
 ~[flink-shaded-guava-30.1.1-jre-14.0.jar:30.1.1-jre-14.0]
        at 
org.apache.flink.shaded.guava30.com.google.common.cache.LocalCache$LocalManualCache.get(LocalCache.java:4859)
 ~[flink-shaded-guava-30.1.1-jre-14.0.jar:30.1.1-jre-14.0]
        at 
org.apache.flink.table.runtime.generated.CompileUtils.compile(CompileUtils.java:84)
 ~[flink-table-runtime-1.15-SNAPSHOT.jar:1.15-SNAPSHOT]
        at 
org.apache.flink.table.runtime.generated.GeneratedClass.compile(GeneratedClass.java:102)
 ~[flink-table-runtime-1.15-SNAPSHOT.jar:1.15-SNAPSHOT]
        at 
org.apache.flink.table.runtime.generated.GeneratedClass.newInstance(GeneratedClass.java:83)
 ~[flink-table-runtime-1.15-SNAPSHOT.jar:1.15-SNAPSHOT]
        ... 11 more
{code}




--
This message was sent by Atlassian Jira
(v8.20.1#820001)

Reply via email to