Re: table.show() in Flink

2020-05-05 Thread Fabian Hueske
ecute(); >>> result2.print(); >>> >>> cc @Godfrey, please correct if I misunderstand the above API. >>> >>> Best, >>> Jark >>> >>> [1]: >>> https://cwiki.apache.org/confluence/pages/viewpage.action

Re: table.show() in Flink

2020-05-05 Thread Őrhidi Mátyás
gt;> cc @Godfrey, please correct if I misunderstand the above API. >> >> Best, >> Jark >> >> [1]: >> https://cwiki.apache.org/confluence/pages/viewpage.action?pageId=134745878 >> >> On Tue, 5 May 2020 at 20:19, Őrhidi Mátyás >> wrote: >>

Re: table.show() in Flink

2020-05-05 Thread Kurt Young
n Tue, 5 May 2020 at 20:19, Őrhidi Mátyás > wrote: > >> 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_tabl

Re: table.show() in Flink

2020-05-05 Thread Jark Wu
ult2.print(); cc @Godfrey, please correct if I misunderstand the above API. Best, Jark [1]: https://cwiki.apache.org/confluence/pages/viewpage.action?pageId=134745878 On Tue, 5 May 2020 at 20:19, Őrhidi Mátyás wrote: > Dear Flink Community, > > I'm missing Spark's table.show() method

table.show() in Flink

2020-05-05 Thread Őrhidi Mátyás
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