From: | Janne <snoopgd(at)yahoo(dot)com> |
---|---|
To: | pgsql-sql(at)postgresql(dot)org |
Subject: | Serious problems with non-primary foreign keys |
Date: | 2009-09-11 13:26:13 |
Message-ID: | 793249.77906.qm@web39808.mail.mud.yahoo.com |
Views: | Whole Thread | Raw Message | Download mbox | Resend email |
Thread: | |
Lists: | pgsql-sql |
I'm having some serious problems using PostgreSQL with symfony and Doctrine. Here is the error that I've been fighting with for the last couple of days: SQLSTATE[25P02]: In failed sql transaction: 7 ERROR: current transaction is aborted, commands ignored until end of transaction block. Failing Query: CREATE INDEX company_id ON sf_guard_user_profile (company_id) It seems to affect every single non-primary foreign key. Turning the key to primary foreign fixes the problem but I don't want it to be primary. I can't think of any logical reason why this error would happen. Generally there's nothing wrong with using a non-primary (not null) foreign key. But Postgre seems to think there is. I know PostgreSQL creates an index for every primary key. Since turning the key also into primary seems to fix it, should I just define an index for it? I've tried it but nothing changes. Here's the relevant SQL:
CREATE TABLE sf_guard_user_profile (id BIGINT, company_id BIGINT NOT NULL, PRIMARY KEY(id));
CREATE TABLE company (company_id INT, PRIMARY KEY(company_id)); Any ideas on how to fix this?
Thank you,
janneaa
From | Date | Subject | |
---|---|---|---|
Next Message | Gerardo Herzig | 2009-09-11 17:57:46 | about pg_proc (column pronamespace) |
Previous Message | Tguru | 2009-09-11 09:47:01 | Re: Talend : Talend Integration Suite vs Talend Open Studio |