diff options
author | Tom Lane <tgl@sss.pgh.pa.us> | 2011-03-08 16:43:02 -0500 |
---|---|---|
committer | Tom Lane <tgl@sss.pgh.pa.us> | 2011-03-08 16:43:56 -0500 |
commit | 3f7d24da16d32ad0fa5abf04b669e86a7d458160 (patch) | |
tree | 577eadbe516761642ed684a0243c858068923f3b | |
parent | a2f216547740819bdd79e05039c525350d7c3d0f (diff) |
Add missing keywords to gram.y's unreserved_keywords list.
We really need an automated check for this ... and did VALIDATE really
need to become a keyword at all, rather than picking some other syntax
using existing keywords?
-rw-r--r-- | src/backend/parser/gram.y | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/backend/parser/gram.y b/src/backend/parser/gram.y index d32e4803571..5b96b5b0df5 100644 --- a/src/backend/parser/gram.y +++ b/src/backend/parser/gram.y @@ -11780,6 +11780,7 @@ unreserved_keyword: | CLASS | CLOSE | CLUSTER + | COLLATION | COMMENT | COMMENTS | COMMIT @@ -11994,6 +11995,7 @@ unreserved_keyword: | UPDATE | VACUUM | VALID + | VALIDATE | VALIDATOR | VALUE_P | VARYING |