aboutsummaryrefslogtreecommitdiffstats
path: root/container-search/src/main/antlr4/com/yahoo/search/yql/yqlplus.g4
diff options
context:
space:
mode:
authorJon Bratseth <bratseth@gmail.com>2021-03-29 11:56:07 +0200
committerJon Bratseth <bratseth@gmail.com>2021-03-29 11:56:07 +0200
commite07d83f16345af60963bb69e0b992f7b059325aa (patch)
tree6ff9fbb30b78bb20c0f4a46172b7c55e6463d60f /container-search/src/main/antlr4/com/yahoo/search/yql/yqlplus.g4
parent01594e3e783bfb5c96b53faef8ad856ab905d32b (diff)
Remove unsupported constructs
Diffstat (limited to 'container-search/src/main/antlr4/com/yahoo/search/yql/yqlplus.g4')
-rw-r--r--container-search/src/main/antlr4/com/yahoo/search/yql/yqlplus.g43
1 files changed, 1 insertions, 2 deletions
diff --git a/container-search/src/main/antlr4/com/yahoo/search/yql/yqlplus.g4 b/container-search/src/main/antlr4/com/yahoo/search/yql/yqlplus.g4
index 6299b71d902..59235f0ae18 100644
--- a/container-search/src/main/antlr4/com/yahoo/search/yql/yqlplus.g4
+++ b/container-search/src/main/antlr4/com/yahoo/search/yql/yqlplus.g4
@@ -32,7 +32,6 @@ options {
SOURCES : 'sources';
AS : 'as';
- ON : 'on'; // TODO: not used?
COMMA : ',';
OUTPUT : 'output';
COUNT : 'count';
@@ -174,7 +173,7 @@ ident
;
keyword_as_ident
- : SELECT | LIMIT | OFFSET | WHERE | 'order' | 'by' | DESC | ON | OUTPUT | COUNT | SOURCES | MATCHES | LIKE
+ : SELECT | LIMIT | OFFSET | WHERE | 'order' | 'by' | DESC | OUTPUT | COUNT | SOURCES | MATCHES | LIKE
;
program : (statement SEMI)* EOF