From f5f4b973e0334b037a412be3436e1d3937231940 Mon Sep 17 00:00:00 2001 From: "a.tolstoy" <a.tolstoy@picodata.io> Date: Thu, 19 Oct 2023 16:15:44 +0300 Subject: [PATCH] fix quote marks --- doc/sql/query.ebnf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/sql/query.ebnf b/doc/sql/query.ebnf index a9921308bd..a5113ba28e 100644 --- a/doc/sql/query.ebnf +++ b/doc/sql/query.ebnf @@ -4,7 +4,7 @@ DQL ::= (SELECT | SELECT UNION ALL SELECT | SELECT (EXCEPT 'DISTINCT'? ) DML ::= (DELETE | INSERT | UPDATE) Options? DDL ::= CreateTable | DropTable ACL ::= DropRole | DropUser | CreateRole | CreateUser -CreateRole ::= `create role` role ('option' '(' ('timeout' '=' DOUBLE)')')? +CreateRole ::= 'create role' role ('option' '(' ('timeout' '=' DOUBLE)')')? CreateTable ::= 'create table' table '(' Column (',' Column)* ',' PrimaryKey ')' ('using' ('memtx' | 'vinyl'))? Distribution ('option' '(' ('timeout' '=' DOUBLE)')')? CreateUser ::= 'create user' user 'with'? 'password' "'" password "'" ('using' ('chap-sha1' | 'ldap' | 'md5'))? ('option' '(' ('timeout' '=' DOUBLE)')')? Column ::= name ('Bool' | 'Decimal' | 'Double' | 'Int' | 'Number' | 'Scalar' | 'String' | 'Text' | 'Unsigned' | 'Varchar') (('not'?) 'null')? -- GitLab