Skip to content

Commit ae9ac79

Browse files
committed
Add semicolon, missed in previous patch. And update the keyword list in
the docs to reflect that OFF is now unreserved. Spotted by Tom Lane.
1 parent 143b8cb commit ae9ac79

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

doc/src/sgml/keywords.sgml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3553,7 +3553,7 @@
35533553
</row>
35543554
<row>
35553555
<entry><token>OFF</token></entry>
3556-
<entry>reserved</entry>
3556+
<entry>non-reserved</entry>
35573557
<entry>non-reserved</entry>
35583558
<entry>non-reserved</entry>
35593559
<entry>reserved</entry>

src/backend/parser/gram.y

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1341,7 +1341,7 @@ opt_boolean_or_string:
13411341
* by the ColId rule below. The action for booleans and strings
13421342
* is the same, so we don't need to distinguish them here.
13431343
*/
1344-
| ColId_or_Sconst { $$ = $1 }
1344+
| ColId_or_Sconst { $$ = $1; }
13451345
;
13461346

13471347
/* Timezone values can be:

0 commit comments

Comments
 (0)