Re: Inefficient query plan - Mailing list pgsql-performance

From Jann Röder
Subject Re: Inefficient query plan
Date
Msg-id i4thof$gol$1@dough.gmane.org
Whole thread Raw
In response to Re: Inefficient query plan  (Scott Marlowe <scott.marlowe@gmail.com>)
Responses Re: Inefficient query plan
List pgsql-performance
Am 23.08.10 07:52, schrieb Scott Marlowe:
> Also are a.indexid and b.indexid the same type?
>

You mean ItemID? Fields of the same name are of the same type - so yes.
According to the documentation pgsql adds indexes for primary keys
automatically so (b.itemID, b.indexNumber) is indexed. Or do you think
adding an extra idnex for b.itemID alone will help? If I understand the
documentation correctly, pqSQL can use the first column of a
multi-column index as if it was indexed individually... but maybe I'm
wrong here.

>> I have two tables:
>> A: ItemID (PK), IsssueID (Indexed)
>> B: ItemID (FK), IndexNumber : PK(ItemID, IndexNumber)


pgsql-performance by date:

Previous
From: Scott Marlowe
Date:
Subject: Re: Inefficient query plan
Next
From: Scott Marlowe
Date:
Subject: Re: Inefficient query plan