This is an automated email from the ASF dual-hosted git repository.

blerer pushed a commit to branch trunk
in repository https://gitbox.apache.org/repos/asf/cassandra.git


The following commit(s) were added to refs/heads/trunk by this push:
     new 12c2c6d645 NINJA-FIX:Remove unused rule in Parser.g
12c2c6d645 is described below

commit 12c2c6d645ac327e04d687eb13da37b1d171ace3
Author: Benjamin Lerer <b.le...@gmail.com>
AuthorDate: Mon Jul 8 15:04:43 2024 +0200

    NINJA-FIX:Remove unused rule in Parser.g
---
 src/antlr/Parser.g | 6 ------
 1 file changed, 6 deletions(-)

diff --git a/src/antlr/Parser.g b/src/antlr/Parser.g
index c1e25bb153..786f242111 100644
--- a/src/antlr/Parser.g
+++ b/src/antlr/Parser.g
@@ -1763,12 +1763,6 @@ singleColumnBetweenValues returns [Terms.Raw terms]
     : t1=term { list.add(t1); } K_AND t2=term { list.add(t2); }
     ;
 
-betweenLiterals returns [Terms.Raw literals]
-    @init { List<Term.Raw> list = new ArrayList<>(); }
-    @after { $literals = Terms.Raw.of(list); }
-    : t1=tupleLiteral { list.add(t1); } K_AND t2=tupleLiteral { list.add(t2); }
-    ;
-
 relationType returns [Operator op]
     : '='  { $op = Operator.EQ; }
     | '<'  { $op = Operator.LT; }


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscr...@cassandra.apache.org
For additional commands, e-mail: commits-h...@cassandra.apache.org

Reply via email to