Re: create table bug with reserved words?
Tom Lane <tgl@sss.pgh.pa.us>
From: Tom Lane <tgl@sss.pgh.pa.us>
To: Chris Storah <cstorah@emis-support.demon.co.uk>
Cc: pgsql-bugs@postgresql.org
Date: 2001-02-15T15:22:41Z
Lists: pgsql-bugs
Chris Storah <cstorah@emis-support.demon.co.uk> writes: > Is this a bug - should the parser cope with any reserved words as > identifiers? No, and no. If you could use them as identifiers then they wouldn't be reserved words, would they? Some keywords are "more reserved" than others in the Postgres parser; see the distinction between ColId and ColLabel in gram.y if you want the details. AFAICT, "CALL" is not a keyword at all in Postgres. regards, tom lane