Skip to content

Commit

Permalink
sql: unreserve the STORED keywords
Browse files Browse the repository at this point in the history
Release note (sql change): the word `stored` can again be used to name
databases, tables or columns without requiring clients to quote the
identifier.
  • Loading branch information
jordanlewis authored and knz committed Apr 17, 2018
1 parent ff9c5a0 commit 58cd6bd
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion docs/generated/sql/bnf/stmt_block.bnf
Original file line number Diff line number Diff line change
Expand Up @@ -778,6 +778,7 @@ unreserved_keyword ::=
| 'STATISTICS'
| 'STDIN'
| 'STORE'
| 'STORED'
| 'STORING'
| 'STRICT'
| 'SPLIT'
Expand Down Expand Up @@ -1496,7 +1497,6 @@ reserved_keyword ::=
| 'SELECT'
| 'SESSION_USER'
| 'SOME'
| 'STORED'
| 'SYMMETRIC'
| 'TABLE'
| 'THEN'
Expand Down
2 changes: 1 addition & 1 deletion pkg/sql/parser/sql.y
Original file line number Diff line number Diff line change
Expand Up @@ -7776,6 +7776,7 @@ unreserved_keyword:
| STATISTICS
| STDIN
| STORE
| STORED
| STORING
| STRICT
| SPLIT
Expand Down Expand Up @@ -7987,7 +7988,6 @@ reserved_keyword:
| SELECT
| SESSION_USER
| SOME
| STORED
| SYMMETRIC
| TABLE
| THEN
Expand Down

0 comments on commit 58cd6bd

Please sign in to comment.