Re: Avoid SqlParser.toSqlString() adding double quotes to select identifiers

2018-11-11 Thread Michael Mior
Have you tried using MysqlSqlDialect instead? On Sun, Nov 11, 2018, 09:21 Shashwat Kumar I am trying to modify a SQL statement using SQL Parser and implementing > SQLVisitor interface to modify select column variables. > However after modification when I am trying to convert back to sql >

Avoid SqlParser.toSqlString() adding double quotes to select identifiers

2018-11-11 Thread Shashwat Kumar
I am trying to modify a SQL statement using SQL Parser and implementing SQLVisitor interface to modify select column variables. However after modification when I am trying to convert back to sql statement, I am getting double quotes in identifiers which is causing sql to break on Elastic Search.