wuchong commented on issue #9781: [FLINK-14098] Support multiple statements for TableEnvironment. URL: https://github.com/apache/flink/pull/9781#issuecomment-536470873 Hi @dawidwys , I think this is not a problem about multiple statements support, it is a problem about lazy execution which is already supported in TableEnvironment of Blink Planner. The following example has the same problem: ``` tEnv.sqlUpdate("CREATE TABLE test (...) with (path = '/tmp1')") tEnv.sqlUpdate("INSERT INTO test SELECT ...") tEnv.sqlUpdate("DROP TABLE test") tEnv.sqlUpdate("CREATE TABLE test (...) with (path = '/tmp2')") tEnv.execute(); ```
---------------------------------------------------------------- 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: [email protected] With regards, Apache Git Services
