Re: Inefficient query plan - Mailing list pgsql-performance

From Tom Lane
Subject Re: Inefficient query plan
Date
Msg-id 21464.1282576855@sss.pgh.pa.us
Whole thread Raw
In response to Re: Inefficient query plan  (Alvaro Herrera <alvherre@commandprompt.com>)
List pgsql-performance
Alvaro Herrera <alvherre@commandprompt.com> writes:
> Hmm, I'm placing bets on the bpchar weirdness.  I'd try getting rid of
> that and using plain varchar for all the columns.

That's certainly what's inhibiting it from considering an indexscan
on the larger table.  I'm not as convinced as the OP that a nestloop
indexscan is really going to win compared to the hash plan, but if
the comparison value is varchar then an index on a bpchar column
is simply not useful --- at least not unless you stick an explicit
cast into the query, so that the comparison will have bpchar rather
than varchar semantics.

            regards, tom lane

pgsql-performance by date:

Previous
From: "Kevin Grittner"
Date:
Subject: Re: Inefficient query plan
Next
From:
Date:
Subject: Re: Inefficient query plan