bschoening commented on code in PR #4112: URL: https://github.com/apache/cassandra/pull/4112#discussion_r2621503712
########## doc/modules/cassandra/examples/BNF/alter_role_statement.bnf: ########## @@ -1 +1,12 @@ -alter_role_statement ::= ALTER ROLE [ IF EXISTS ] role_name WITH role_options +alter_role_statement ::= ALTER ROLE [ IF EXISTS ] role_name ( WITH <option> ( AND <option> )* )? + +<option> ::= PASSWORD = <string> + | HASHED PASSWORD = <string> + | GENERATED PASSWORD + | LOGIN = <boolean> + | SUPERUSER = <boolean> + | OPTIONS = <map_literal> Review Comment: fixed -- 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]

