Hi, I could not find the way to reuse table names.
tableEnv = TableEnvironment.getTableEnvironment(env); ..... Table table = .... tableEnv.registerTable( "table1", table ); Table table = tableEnv.sql( "select * from table1" ); ..... ..... Is it possible to "unregister" table or replace it with another one? Thank you.