I have a table and I am trying to parse it's create statement like
As we seen, all fields of this sqlNode are quoted by ` . But this is not what I want
How to remove all the quotes by SqlWriterConfig? thanks
I have a table and I am trying to parse it's create statement like
As we seen, all fields of this sqlNode are quoted by ` . But this is not what I want
How to remove all the quotes by SqlWriterConfig? thanks
In SqlWriterConfig, there is:
/** Sets {@link #quoteAllIdentifiers}. */
SqlWriterConfig withQuoteAllIdentifiers(boolean quoteAllIdentifiers);
you can pass argument as false
.