Dear Flink Community,

I'm missing Spark's table.show() method in Flink. I'm using the following
alternative at the moment:

Table results = tableEnv.sqlQuery("SELECT * FROM my_table");
tableEnv.toAppendStream(results, Row.class).print();

Is it the recommended way to print the content of a table?


Thanks,

Matyas

Reply via email to