[HACKERS] RE: ALTER TABLE...ADD CONSTRAINT?

2000-11-22 Thread Christopher Kings-Lynne
Is anybody working on: alter table table add constraint name primary key(column,...); or alter table table add constraint name unique(column,...); or alter table drop constraint I'd be more than happy to work on either of the above in the current implementation, however -

Re: [HACKERS] RE: ALTER TABLE...ADD CONSTRAINT?

2000-11-22 Thread Tom Lane
"Christopher Kings-Lynne" [EMAIL PROTECTED] writes: can someone point me to the C file that handles CREATE TABLE so I can see how it's done? backend/parser/analyze.c has the preprocessing (see transformCreateStmt). Actual execution starts in backend/commands/creatinh.c, and there's also