mayankshriv commented on a change in pull request #5825:
URL: https://github.com/apache/incubator-pinot/pull/5825#discussion_r467348224
##########
File path:
pinot-common/src/main/java/org/apache/pinot/sql/parsers/CalciteSqlParser.java
##########
@@ -74,6 +74,11 @@
* non-alphanumeric characters. */
private static final Lex PINOT_LEX = Lex.MYSQL_ANSI;
+ // BABEL is a very liberal conformance value that allows anything supported
by any dialect
+ private static final SqlParser.Config PARSER_CONFIG =
+
SqlParser.configBuilder().setLex(PINOT_LEX).setConformance(SqlConformanceEnum.BABEL)
Review comment:
IIRC `BABEL` was able to parse some of the PQL's that the default won't.
And the intent was to start off with a mode that makes for a smoother
transition.
----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
For queries about this service, please contact Infrastructure at:
[email protected]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]