Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
Skip to content

Commit 57b80b4

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 5c84fe4 commit 57b80b4

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

doc/src/sgml/keywords.sgml

+1-1
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

+1-1
Original file line numberDiff line numberDiff line change
@@ -1347,7 +1347,7 @@ opt_boolean_or_string:
13471347
* by the ColId rule below. The action for booleans and strings
13481348
* is the same, so we don't need to distinguish them here.
13491349
*/
1350-
| ColId_or_Sconst { $$ = $1 }
1350+
| ColId_or_Sconst { $$ = $1; }
13511351
;
13521352

13531353
/* Timezone values can be:

0 commit comments

Comments
 (0)