Re: Using double quotes for SQL identifiers

2021-01-26 Thread Gyula Fóra
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

Re: Using double quotes for SQL identifiers

2021-01-26 Thread Timo Walther
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

Re: Using double quotes for SQL identifiers

2021-01-26 Thread Sebastian Liu
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

Using double quotes for SQL identifiers

2021-01-26 Thread Gyula Fóra
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