You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: flink-table/flink-table-planner-blink/src/test/scala/org/apache/flink/table/planner/runtime/stream/sql/CalcITCase.scala
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -318,7 +318,7 @@ class CalcITCase extends StreamingTestBase {
318
318
319
319
valddl=
320
320
s"""
321
-
|CREATE TABLE SimpleTable (
321
+
|CREATE TABLE CustomTable (
322
322
| a bigint,
323
323
| b map<bigint, bigint>
324
324
|) WITH (
@@ -331,7 +331,7 @@ class CalcITCase extends StreamingTestBase {
331
331
332
332
env.getConfig.disableObjectReuse()
333
333
tEnv.executeSql(ddl)
334
-
valresult= tEnv.executeSql( "select a, b from SimpleTable")
334
+
valresult= tEnv.executeSql( "select a, b from CustomTable")
0 commit comments