aboutsummaryrefslogtreecommitdiffstats
path: root/container-search/src/main/antlr4/com
diff options
context:
space:
mode:
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); })? )
;