Unknown dialect should use standard quoting

2017-02-26 Thread Jess Balint
Hi, In SqlDialect, the UNKNOWN dialect uses backticks for quoting. This is a MySQL-ism. Any reason not to change it to the standard of double-quotes? Thx. Jess

Re: Unknown dialect should use standard quoting

2017-02-26 Thread Julian Hyde
Back-ticks are easier for test cases because double quotes don’t embed well in java strings. No one else should be using UNKNOWN. > On Feb 26, 2017, at 8:13 AM, Jess Balint wrote: > > Hi, > > In SqlDialect, the UNKNOWN dialect uses backticks for quoting. This is a > MySQL-ism. Any reason not