Skip to content
Snippets Groups Projects
Verified Commit 267e5d43 authored by Alexander Tolstoy's avatar Alexander Tolstoy Committed by Denis Smirnov
Browse files

doc: password is now optional for CREATE USER

parent 42b8a4a2
No related branches found
No related tags found
1 merge request!1496query.ebnf: password is now optional for CREATE USER
Pipeline #58423 failed
...@@ -176,8 +176,7 @@ create_table ::= 'CREATE' 'TABLE' ('IF' 'NOT' 'EXISTS')? table ...@@ -176,8 +176,7 @@ create_table ::= 'CREATE' 'TABLE' ('IF' 'NOT' 'EXISTS')? table
(('DISTRIBUTED' (('BY' '(' column (',' column)* ')' ('IN' 'TIER' tier)?) | 'GLOBALLY'))?)? (('DISTRIBUTED' (('BY' '(' column (',' column)* ')' ('IN' 'TIER' tier)?) | 'GLOBALLY'))?)?
('WAIT' 'APPLIED' ('GLOBALLY' | 'LOCALLY'))? ('WAIT' 'APPLIED' ('GLOBALLY' | 'LOCALLY'))?
('OPTION' '(' ('TIMEOUT' '=' double)')')? ('OPTION' '(' ('TIMEOUT' '=' double)')')?
create_user ::= 'CREATE' 'USER' ('IF' 'NOT' 'EXISTS')? user 'WITH'? 'PASSWORD' "'" password "'" create_user ::= 'CREATE' 'USER' ('IF' 'NOT' 'EXISTS')? user (('USING' ('LDAP')) | ('WITH'? 'PASSWORD' "'" password "'" ('USING' ('CHAP-SHA1' | 'MD5')?)?))
('USING' ('CHAP-SHA1' | 'LDAP' | 'MD5'))?
alter_user ::= 'ALTER' 'USER' user alter_user ::= 'ALTER' 'USER' user
'WITH'? ( 'WITH'? (
'LOGIN' 'LOGIN'
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment