Dmitry Lychagin has submitted this change and it was merged. Change subject: [NO ISSUE][SQL] Fix token name typo in SQL++ parser ......................................................................
[NO ISSUE][SQL] Fix token name typo in SQL++ parser - user model changes: no - storage format changes: no - interface change: no Details: - Fixed token name typo in SQL++ parser Change-Id: I7288811a6ade385647f58e1b4a2a03b8704f7923 Reviewed-on: https://asterix-gerrit.ics.uci.edu/2136 Sonar-Qube: Jenkins <[email protected]> Tested-by: Jenkins <[email protected]> Contrib: Jenkins <[email protected]> Integration-Tests: Jenkins <[email protected]> Reviewed-by: Till Westmann <[email protected]> --- M asterixdb/asterix-lang-sqlpp/src/main/javacc/SQLPP.jj 1 file changed, 2 insertions(+), 2 deletions(-) Approvals: Till Westmann: Looks good to me, approved Jenkins: Verified; No violations found; ; Verified diff --git a/asterixdb/asterix-lang-sqlpp/src/main/javacc/SQLPP.jj b/asterixdb/asterix-lang-sqlpp/src/main/javacc/SQLPP.jj index 7c4d15c..a58ce0f 100644 --- a/asterixdb/asterix-lang-sqlpp/src/main/javacc/SQLPP.jj +++ b/asterixdb/asterix-lang-sqlpp/src/main/javacc/SQLPP.jj @@ -1996,7 +1996,7 @@ ( <NULL> { fn = BuiltinFunctions.IS_NULL; } | <MISSING> { fn = BuiltinFunctions.IS_MISSING; } | - <UNKOWN> { fn = BuiltinFunctions.IS_UNKNOWN; } + <UNKNOWN> { fn = BuiltinFunctions.IS_UNKNOWN; } ) { FunctionSignature signature = new FunctionSignature(fn); @@ -3270,7 +3270,7 @@ | <TYPE : "type"> | <TO : "to"> | <UNION : "union"> - | <UNKOWN : "unknown"> + | <UNKNOWN : "unknown"> | <UNNEST : "unnest"> | <UPDATE : "update"> | <UPSERT : "upsert"> -- To view, visit https://asterix-gerrit.ics.uci.edu/2136 To unsubscribe, visit https://asterix-gerrit.ics.uci.edu/settings Gerrit-MessageType: merged Gerrit-Change-Id: I7288811a6ade385647f58e1b4a2a03b8704f7923 Gerrit-PatchSet: 2 Gerrit-Project: asterixdb Gerrit-Branch: master Gerrit-Owner: Dmitry Lychagin <[email protected]> Gerrit-Reviewer: Dmitry Lychagin <[email protected]> Gerrit-Reviewer: Ian Maxon <[email protected]> Gerrit-Reviewer: Jenkins <[email protected]> Gerrit-Reviewer: Taewoo Kim <[email protected]> Gerrit-Reviewer: Till Westmann <[email protected]> Gerrit-Reviewer: Xikui Wang <[email protected]>
