Re: Delete query takes exorbitant amount of time - Mailing list pgsql-performance

From Bruno Wolff III
Subject Re: Delete query takes exorbitant amount of time
Date
Msg-id 20050403121820.GB27923@wolff.to
Whole thread Raw
In response to Re: Delete query takes exorbitant amount of time  (Karim A Nassar <Karim.Nassar@NAU.EDU>)
List pgsql-performance
On Tue, Mar 29, 2005 at 01:48:48 -0700,
  Karim A Nassar <Karim.Nassar@NAU.EDU> wrote:
>
> For this FK check, there only need be one referring id to invalidate the
> delete. ISTM that for any delete with a FK reference, the index could
> always be used to search for a single value in the referring table
> (excepting very small tables). Why then must a sequential scan be
> performed in this case, and/or in general?

First the index needs to exist. It isn't created automatically because not
everyone wants such an index. Second, you need to have analyzed the
referencing table so that the planner will know it is big enough that
using an indexed search is worthwhile. The planner is getting better
about dealing with size changes without reanalyzing, but it seems there
are still some gotchas in 8.0.

pgsql-performance by date:

Previous
From: PFC
Date:
Subject: Re: Query Optimizer Failure / Possible Bug
Next
From: Bruno Wolff III
Date:
Subject: Re: coalesce alternative