Re: Problem with LIKE-Performance - Mailing list pgsql-performance

From Tom Lane
Subject Re: Problem with LIKE-Performance
Date
Msg-id 13754.1145375139@sss.pgh.pa.us
Whole thread Raw
In response to Re: Problem with LIKE-Performance  ("Tarabas (Manuel Rorarius)" <tarabas@tarabas.de>)
Responses Re: [bulk] Re: Problem with LIKE-Performance  ("Tarabas (Manuel Rorarius)" <tarabas@tarabas.de>)
List pgsql-performance
"Tarabas (Manuel Rorarius)" <tarabas@tarabas.de> writes:
> After removing the enable_seqscan = off and making sure it was gone,
> it is a lot faster again.
> Now it takes about 469.841 ms for the select.

Um, no, enable_seqscan would certainly not have had any effect on the
*actual* runtime of this query.  All that enable_seqscan = off really
does is to add a large constant to the estimated cost of any seqscan,
so as to prevent the planner from selecting it unless there is no other
alternative plan available.  But that has nothing to do with how long
the seqscan will really run.

If you are seeing a speedup in repeated executions of the same seqscan
plan, it's probably just a caching effect.

As already noted, it might be worth your while to add an index using the
pattern-ops opclass to help with queries like this.

            regards, tom lane

pgsql-performance by date:

Previous
From: "Tarabas (Manuel Rorarius)"
Date:
Subject: Re: [bulk] RE: Problem with LIKE-Performance
Next
From: "Tarabas (Manuel Rorarius)"
Date:
Subject: Re: [bulk] Re: Problem with LIKE-Performance