mirror of
https://github.com/postgres/postgres.git
synced 2025-07-18 17:42:25 +03:00
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.
This commit is contained in:
@ -3553,7 +3553,7 @@
|
||||
</row>
|
||||
<row>
|
||||
<entry><token>OFF</token></entry>
|
||||
<entry>reserved</entry>
|
||||
<entry>non-reserved</entry>
|
||||
<entry>non-reserved</entry>
|
||||
<entry>non-reserved</entry>
|
||||
<entry>reserved</entry>
|
||||
|
@ -1341,7 +1341,7 @@ opt_boolean_or_string:
|
||||
* by the ColId rule below. The action for booleans and strings
|
||||
* is the same, so we don't need to distinguish them here.
|
||||
*/
|
||||
| ColId_or_Sconst { $$ = $1 }
|
||||
| ColId_or_Sconst { $$ = $1; }
|
||||
;
|
||||
|
||||
/* Timezone values can be:
|
||||
|
Reference in New Issue
Block a user