Re: operator exclusion constraints
Jeff Davis <pgsql@j-davis.com>
From: Jeff Davis <pgsql@j-davis.com>
To: Tom Lane <tgl@sss.pgh.pa.us>
Cc: Robert Haas <robertmhaas@gmail.com>, Peter Eisentraut <peter_e@gmx.net>, Simon Riggs <simon@2ndquadrant.com>, pgsql-hackers@postgresql.org
Date: 2009-11-07T01:46:24Z
Lists: pgsql-hackers
Attachments
- grammar.diff (text/x-patch) patch
On Fri, 2009-11-06 at 19:05 -0500, Tom Lane wrote: > > CREATE TABLE foo > > ( > > exclusion int, > > EXCLUSION (exclusion CHECK WITH =) > > ); > > Well, it looks like it should be able to work, because left-paren > can't immediately follow a column name AFAIR. I agree; I don't think it's ambiguous. The other possibility is the optional "USING index_method" clause in between, but USING is already reserved, so I don't see a problem there either. > Maybe I'm missing > something. What's your grammar patch exactly, and what does > bison -v finger as being the problem? > bison -v doesn't show anything useful beyond saying that there is one shift/reduce conflict. The gram.output is 10MB, which doesn't help me much (I'm still trying to make sense of it). I'd offer to send it along, but I'm sure bison would produce the same thing for you. Patch attached with EXCLUSION as a col_name_keyword and one shift/reduce conflict. Regards, Jeff Davis