Re: Inner join on two OR conditions dont use index - Mailing list pgsql-performance

From John A Meinel
Subject Re: Inner join on two OR conditions dont use index
Date
Msg-id 4294DDAC.1060908@arbash-meinel.com
Whole thread Raw
In response to Inner join on two OR conditions dont use index  (Jocelyn Turcotte <turcotte.j@gmail.com>)
Responses Re: Inner join on two OR conditions dont use index
List pgsql-performance
Jocelyn Turcotte wrote:

>Hi all
>i dont know if this is normal, but if yes i would like to know why and
>how I could do it another way other than using unions.
>
>

The only thing that *might* work is if you used an index on both keys.
So if you did:

CREATE INDEX rt_edge_start_end_node ON rt_edge(start_node_id,end_node_id);

The reason is that in an "OR" construct, you have to check both for being true. So in the general case where you don't
knowthe correlation between the columns, you have to check all of the entries, because even if you know the status of
oneside of the OR, you don't know the other. 

Another possibility would be to try this index:

CREATE INDEX rt_edge_stare_or_end ON rt_edge(start_node_id OR end_node_id);

I'm not sure how smart the planner can be, though.

John
=:->



Attachment

pgsql-performance by date:

Previous
From: Jocelyn Turcotte
Date:
Subject: Inner join on two OR conditions dont use index
Next
From: "Mohan, Ross"
Date:
Subject: test - pls delete and ignore