bbotella commented on code in PR #3921: URL: https://github.com/apache/cassandra/pull/3921#discussion_r1972023566
########## src/antlr/Parser.g: ########## @@ -980,7 +980,7 @@ alterTableStatement returns [AlterTableStatement.Raw stmt] | K_ALTER ( K_IF K_EXISTS { $stmt.ifColumnExists(true); } )? id=cident ( mask=columnMask { $stmt.mask(id, mask); } | K_DROP K_MASKED { $stmt.mask(id, null); } - | K_DROP K_CHECK { $stmt.dropConstraints(id); } + | K_DROP K_CHECK { $stmt.alterConstraints(id, null); } | (constraints=columnConstraints) { $stmt.alterConstraints(id, constraints); }) Review Comment: What do you think about having its own Jira ticket for it? -- 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: pr-unsubscr...@cassandra.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org --------------------------------------------------------------------- To unsubscribe, e-mail: pr-unsubscr...@cassandra.apache.org For additional commands, e-mail: pr-h...@cassandra.apache.org