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

Reply via email to