diff options
| author | Heikki Linnakangas <heikki.linnakangas@iki.fi> | 2010-10-22 18:38:31 +0300 | 
|---|---|---|
| committer | Heikki Linnakangas <heikki.linnakangas@iki.fi> | 2010-10-22 18:39:43 +0300 | 
| commit | ae9ac79b39d5ce0c28e13c47261d925b61701b66 (patch) | |
| tree | c1365b2c934c2c1aa262b0e2626eb09814017287 /src | |
| parent | 143b8cbceec0d15dd5c747e2c45a4b0a762af6f0 (diff) | |
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.
Diffstat (limited to 'src')
| -rw-r--r-- | src/backend/parser/gram.y | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/src/backend/parser/gram.y b/src/backend/parser/gram.y index de91ccc2147..05ff0822c9f 100644 --- a/src/backend/parser/gram.y +++ b/src/backend/parser/gram.y @@ -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: | 
