smiklosovic commented on code in PR #4411:
URL: https://github.com/apache/cassandra/pull/4411#discussion_r2436261052


##########
src/antlr/Parser.g:
##########
@@ -1275,6 +1295,89 @@ dropKeyspaceStatement returns [DropKeyspaceStatement.Raw 
stmt]
     : K_DROP K_KEYSPACE (K_IF K_EXISTS { ifExists = true; } )? ks=keyspaceName 
{ $stmt = new DropKeyspaceStatement.Raw(ks, ifExists); }
     ;
 
+/**

Review Comment:
   not sure what is causing it but we have warnings on build like this
   
       gen-cql3-grammar:
        [echo] Building Grammar 
/home/fermat/dev/cassandra/cassandra-instaclustr/cassandra/src/antlr/Cql.g  ...
        [java] warning(200): Parser.g:1078:47: 
        [java] Decision can match input such as "K_AND K_SECURITY K_LABELS" 
using multiple alternatives: 1, 2
        [java] 
        [java] As a result, alternative(s) 2 were disabled for that input
        [java] warning(200): Parser.g:1078:47: 
        [java] Decision can match input such as "K_AND K_INDEXES" using 
multiple alternatives: 1, 2
        [java] 
        [java] As a result, alternative(s) 2 were disabled for that input
        [java] warning(200): Parser.g:1078:47: 
        [java] Decision can match input such as "K_AND K_COMMENTS" using 
multiple alternatives: 1, 2
        [java] 
        [java] As a result, alternative(s) 2 were disabled for that input
   
   
   This should be definitely resolved.



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to