Re: constraint with reference to the same table - Mailing list pgsql-performance

From Victor Yegorov
Subject Re: constraint with reference to the same table
Date
Msg-id 20030515010341.GD1549@nordlb.lv
Whole thread Raw
In response to Re: constraint with reference to the same table  (Stephan Szabo <sszabo@megazone23.bigpanda.com>)
Responses Re: constraint with reference to the same table  (Stephan Szabo <sszabo@megazone23.bigpanda.com>)
List pgsql-performance
* Stephan Szabo <sszabo@megazone23.bigpanda.com> [15.05.2003 03:54]:
>
> That can be a win, but if you're actually dropping and adding the
> constraint again it may not be on large tables since it'll still do a
> whole bunch of index lookups to check the existing rows when the alter
> table add constraint happens.  Disabling triggers and re-enabling them is
> faster but breaks the guarantee of the constraint.

You're right. I thought of big tables after posting the reply. My solution
is suitable for my case, i.e. not so big tables.

Returning to the very first question I asked.
May be it is usefull to implicitly create index on foreign key columns?
Actually, untill you had pointed on seq. scans, I thought Postgres is
using internal indicies - don't ask me why.


--

Victor Yegorov

pgsql-performance by date:

Previous
From: Stephan Szabo
Date:
Subject: Re: constraint with reference to the same table
Next
From: Rudi Starcevic
Date:
Subject: Re: constraint with reference to the same table