Re: Weird performance drop - Mailing list pgsql-performance

From Dave Dutcher
Subject Re: Weird performance drop
Date
Msg-id 018c01c77257$cb0bd520$2e00a8c0@tridecap.com
Whole thread Raw
In response to Weird performance drop  (Vincenzo Romano <vincenzo.romano@gmail.com>)
Responses Re: Weird performance drop
List pgsql-performance
> From: pgsql-performance-owner@postgresql.org
> [mailto:pgsql-performance-owner@postgresql.org] On Behalf Of
> Vincenzo Romano
>
> I thought that the query planner usually did a bad job on
> function bodies
> because they'd appear opaque to it.
> In this case it seems to me that the body is opaque only if I
> use the "like"
> operator.

If you run explain on a query that looks like "select * from a_table where
a_column like 'foo%'" (and you have the appropriate index) you will see that
postgres rewrites the where clause as "a_column >= 'foo' and a_column <
'fop'".  I think your problem is that the query is planned when the function
is created, and at that time postgres doesn't know the value you are
comparing against when you use the like operator, so postgres can't rewrite
the query using >= and <.  The problem doesn't happen for plain equality
because postgres doesn't need to know anything about what you are comparing
against in order to use equality.

Somebody else can correct me if I'm wrong.

Dave


pgsql-performance by date:

Previous
From: Dimitri
Date:
Subject: Re: Shared buffers, db transactions commited, and write IO on Solaris
Next
From: "Dave Dutcher"
Date:
Subject: Re: Planner doing seqscan before indexed join