Re: Query too slow with "not in" condition - Mailing list pgsql-general

From Tom Lane
Subject Re: Query too slow with "not in" condition
Date
Msg-id 16753.1228067890@sss.pgh.pa.us
Whole thread Raw
In response to Re: Query too slow with "not in" condition  ("David Rowley" <dgrowley@gmail.com>)
List pgsql-general
"David Rowley" <dgrowley@gmail.com> writes:
> I assume workmem, effective_cache_size and random_page_cost are all the same
> in the 2 postgresql.conf?

Indeed, work_mem is probably the problem.  The critical difference
between the two plans seems to be that the first one is using a
"hashed subplan" and the second one isn't.  Assuming the same datatypes
in both databases, the only reason not to use a hashed subplan is if
the hashtable is estimated not to fit in work_mem.

            regards, tom lane

pgsql-general by date:

Previous
From: "Scott Marlowe"
Date:
Subject: Re: db backup script in gentoo
Next
From: Tom Lane
Date:
Subject: Re: Question on libpq parameters