Re: Print table contents

2019-01-25 Thread Soheil Pourbafrani
s/flink/flink-docs-master/dev/table/common.html#convert-a-table-into-a-dataset > > > On Sat, Jan 26, 2019 at 3:24 AM Soheil Pourbafrani > wrote: > >> Hi, >> >> Using Flink Table object how can we print table contents, something like >> Spark show() method? >

Re: Print table contents

2019-01-25 Thread Hequn Cheng
ing Flink Table object how can we print table contents, something like > Spark show() method? > > for example in the following: > > tableEnv.registerDataSet("Orders", raw, "id, country, num, about"); > Table results = tableEnv.sqlQuery("SELECT id FROM Ord

Print table contents

2019-01-25 Thread Soheil Pourbafrani
Hi, Using Flink Table object how can we print table contents, something like Spark show() method? for example in the following: tableEnv.registerDataSet("Orders", raw, "id, country, num, about"); Table results = tableEnv.sqlQuery("SELECT id FROM Orders WHERE id >