Re: Cannot write DataSet as csv file

2019-07-07 Thread Konstantin Knauf
Hi Soheil, I don't think it is a bug the Row class is pretty tightly linked to the TableAPI. DataSet#writeAsCsv has always only worked with Tuple classes. You can use DataSet#writeAsText to write arbitrary DataSets to file (will use toString() methods). Cheers, Konstantin On Sat, Jul 6, 2019 at

Cannot write DataSet as csv file

2019-07-06 Thread Soheil Pourbafrani
Hi, Using the JDBCInputFormat I loaded a DataSet type. When I tried to save it as CSV file it errors: java.lang.ClassCastException: org.apache.flink.types.Row cannot be cast to org.apache.flink.api.java.tuple.Tuple That's while I can save it as a text file. Here is the code. DataSet dataset = en