Any help here? Moreover if I use the DataStream APIs there's no left/right outer join yet..are those meant to be added in Flink 1.13 or 1.14?
On Wed, Apr 7, 2021 at 12:27 PM Flavio Pompermaier <pomperma...@okkam.it> wrote: > Hi to all, > I'm testing writing to a CSV using Flink 1.13 and I get the following > error: > > The matching candidates: > org.apache.flink.table.sinks.CsvBatchTableSinkFactory > Unsupported property keys: > format.quote-character > > I create the table env using this: > > final EnvironmentSettings envSettings = EnvironmentSettings.newInstance()// > .useBlinkPlanner()// > // .inBatchMode()// > .inStreamingMode()// > .build(); > final TableEnvironment tableEnv = TableEnvironment.create(envSettings); > > The error is the same both with inBatchMode and inStreamingMode. > Is this really not supported or am I using the wrong API? > > Best, > Flavio >