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:04:45 +0200
committerJon Bratseth <bratseth@gmail.com>2021-03-29 11:04:45 +0200
commit6bc00c65350f465d3367c2fa45e9fdbc8b7a6a14 (patch)
treede978de383c130f7cb05de29506bf405c75e226c /container-search/src/main/antlr4/com/yahoo/search/yql/yqlplus.g4
parentf5d04998bfca09b8ae5daa747d55d73a50a62391 (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.g415
1 files changed, 0 insertions, 15 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 b3bb7a3a6bb..ab3537ab4b9 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
@@ -341,21 +341,6 @@ argument[boolean in_select]
: expression[$in_select]
;
-// -------- join expressions ------------
-
-// Limit expression syntax for joins: A single equality test and one field from each source.
-// This means it can always turn the join into a query to one source, collecting all of the
-// keys from the results, and then a query to the other source (or querying the other source inline).
-// Does not support map or index references.
-
-joinExpression
- : joinDereferencedExpression EQ joinDereferencedExpression
- ;
-
-joinDereferencedExpression
- : namespaced_name
- ;
-
// --------- expressions ------------
expression [boolean select]