Thanks guys for the pointers, I will give it a try!
Gyula
On Tue, Jan 26, 2021 at 5:53 PM Timo Walther wrote:
> Hi Gyula,
>
> the TableEnvironment.getConfig offers a setPlannerConfig. And
> org.apache.flink.table.planner.calcite.CalciteConfigBuilder helps in
> creating an object that implements
Hi Gyula,
the TableEnvironment.getConfig offers a setPlannerConfig. And
org.apache.flink.table.planner.calcite.CalciteConfigBuilder helps in
creating an object that implements this interface. You should be able to
influence the Calcite parser config with this.
However, I'm not sure how well
Hi Gyula,
AFAIK, except the sql-dialect, table API does not expose any parser related
configuration to the user.
But we still can change the config of quoting identifiers in parser with
some code changing.
You can reference this test class:
org.apache.flink.sql.parser.FlinkDDLDataTypeTest.TestFact
Hi All!
Is it possible in any way to configure the Table environments to allow
double quotes (") to be used for identifiers instead of backticks (`).
Thank you!
Gyula