Re: Optimising "in" queries

From: Russell Smith <mr-russ(at)pws(dot)com(dot)au>
To: Michael Glaesemann <grzm(at)seespotcode(dot)net>
Cc: Stephen Davies <scldad(at)sdc(dot)com(dot)au>, pgsql-performance(at)postgresql(dot)org
Subject: Re: Optimising "in" queries
Date: 2007-08-23 07:42:28
Message-ID: 46CD3A64.9050302@pws.com.au
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-performance

Russell Smith wrote:
>
> Filter: (sensor_id = ANY ('{1137,1138,1139,1140}'::integer[]))
>
> I've never seen this plan item except for when array's are involved. I
> could be wrong. I'd like to know how this is generated when you don't
> have an array.
>

I have just discovered that PG 8.2 will turn an IN clause into an array
search instead of an OR list. Sorry all.

Regards

Russell Smith

In response to

Browse pgsql-performance by date

  From Date Subject
Next Message Merlin Moncure 2007-08-23 13:09:00 asynchronous commit feature
Previous Message Russell Smith 2007-08-23 07:34:01 Re: Optimising "in" queries