aboutsummaryrefslogtreecommitdiffstats
path: root/container-search/src/main/antlr4/com
diff options
context:
space:
mode:
authorJon Bratseth <bratseth@gmail.com>2021-03-29 10:45:07 +0200
committerJon Bratseth <bratseth@gmail.com>2021-03-29 10:45:07 +0200
commit1db295c8c6e521af7a3b7f7f6ed4ceb4066e921a (patch)
tree2939420ddacf2efff4ff28bfcb1337b2b1791fc3 /container-search/src/main/antlr4/com
parent6f8a35e84e54ca0b1a78f02f18bf8018479c0a58 (diff)
Remove unsupported constructs
Diffstat (limited to 'container-search/src/main/antlr4/com')
-rw-r--r--container-search/src/main/antlr4/com/yahoo/search/yql/yqlplus.g411
1 files changed, 1 insertions, 10 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 26357267f4e..109e43d7029 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
@@ -262,22 +262,13 @@ select_source_multi
;
select_source_join
- : FROM source_spec join_expr*
+ : FROM source_spec
;
source_list
: namespaced_name (COMMA namespaced_name )*
;
-join_expr
- : (join_spec source_spec ON joinExpression)
- ;
-
-join_spec
- : LEFT JOIN
- | 'inner'? JOIN
- ;
-
source_spec
: ( data_source (alias_def { ($data_source.ctx).addChild($alias_def.ctx); })? )
;