"D'Arcy J.M. Cain" wrote:
>
> Thus spake Jan Wieck
> > As far as I see it now, I can get the FK stuff with MATCH
> > FULL ready by February first. Must be enough.
>
> Any chance of getting the FK semantics into the parser right away even
> though it is ignored?
We do have foreign key syntax in parser
hannu=> create table foreign_tab(
hannu-> f int,
hannu-> foreign key(f) references primary_tab (i)
hannu-> );
NOTICE: CREATE TABLE/FOREIGN KEY clause ignored; not yet implemented
What do you mean by semantics here ?
Should it check that the primary table and field(s) exist ?
------------------
Hannu