[ 
https://issues.apache.org/jira/browse/CASSANDRA-15020?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=16770171#comment-16770171
 ] 

C. Scott Andreas edited comment on CASSANDRA-15020 at 2/16/19 6:50 PM:
-----------------------------------------------------------------------

Thank you for reporting this, [~lucinda]!

I've attached two small patches to fix this. One applies to trunk and the 3.11 
branch (in which the .rst docs exist), and a second patch for the Textile 
documentation used for 3.0.


was (Author: cscotta):
Thank you for reporting this, [~lucinda]!

I've attached two small patches to fix this. One applies to trunk and the 3.11 
branch (in which the .rst docs exist), and a second patch for the Textile 
documentation used for 3.0.[^CASSANDRA-15020-trunk-3.11.patch]

> Invalid CQL in documentation
> ----------------------------
>
>                 Key: CASSANDRA-15020
>                 URL: https://issues.apache.org/jira/browse/CASSANDRA-15020
>             Project: Cassandra
>          Issue Type: Improvement
>          Components: Documentation/Website
>            Reporter: Liudmila Kornilova
>            Assignee: C. Scott Andreas
>            Priority: Trivial
>         Attachments: CASSANDRA-15020-3.0.patch, 
> CASSANDRA-15020-trunk-3.11.patch
>
>
>  [http://cassandra.apache.org/doc/4.0/cql/security.html]
> 1.
> Wrong:
> CREATE USER *IF EXISTS* alice WITH PASSWORD 'password_a' SUPERUSER;
>  CREATE ROLE *IF EXISTS* alice WITH PASSWORD = 'password_a' AND LOGIN = true 
> AND SUPERUSER = true;
> Correct:
> CREATE USER IF *NOT* EXISTS alice WITH PASSWORD 'password_a' SUPERUSER;
> CREATE ROLE IF *NOT* EXISTS alice WITH PASSWORD = 'password_a' AND LOGIN = 
> true AND SUPERUSER = true; 
>  
> 2. 
>  Wrong:
> CREATE ROLE alice WITH PASSWORD = 'password_a' *WITH* LOGIN = true;
> CREATE ROLE alice WITH PASSWORD = 'password_a' *WITH* LOGIN = true;
> Correct:
> CREATE ROLE alice WITH PASSWORD = 'password_a' *AND* LOGIN = true;
> CREATE ROLE alice WITH PASSWORD = 'password_a' *AND* LOGIN = true;
>  



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)

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

Reply via email to