Commit 57b80b4c authored by Heikki Linnakangas's avatar Heikki Linnakangas

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.
parent 5c84fe46
......@@ -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>
......
......@@ -1347,7 +1347,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:
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment