0

I have a table and I am trying to parse it's create statement like enter image description here

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

slo
  • 23
  • 5

1 Answers1

0

In SqlWriterConfig, there is:

/** Sets {@link #quoteAllIdentifiers}. */
SqlWriterConfig withQuoteAllIdentifiers(boolean quoteAllIdentifiers);

you can pass argument as false.

Abhishek Dasgupta
  • 578
  • 1
  • 8
  • 20