zjffdu commented on a change in pull request #4137: URL: https://github.com/apache/zeppelin/pull/4137#discussion_r654284105
########## File path: flink/flink-scala-parent/src/main/java/org/apache/zeppelin/flink/sql/AbstractStreamSqlJob.java ########## @@ -99,7 +104,7 @@ private static TableSchema removeTimeAttributes(TableSchema schema) { protected abstract String getType(); public String run(String st) throws IOException { - Table table = stenv.sqlQuery(st); + this.table = stenv.sqlQuery(st); String tableName = "UnnamedTable_" + "_" + SQL_INDEX.getAndIncrement(); return run(table, tableName); Review comment: Good point @cuspymd I have set table in this run method as well. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. For queries about this service, please contact Infrastructure at: us...@infra.apache.org