Ian Westmacott <[EMAIL PROTECTED]> writes: > I have this query, where PG (8.1.2) prefers Merge Join over Hash Join > over Nested Loop. However, this order turns out to increase in > performance. I was hoping someone might be able to shed some light on > why PG chooses the plans in this order, and what I might do to > influence it otherwise. Thanks,
Reducing random_page_cost would influence it to prefer the nestloop. However, I doubt you're ever going to get really ideal results for this query --- the estimated row counts are too far off, and the WHERE conditions are sufficiently bizarre that there's not much hope that they'd ever be much better. regards, tom lane ---------------------------(end of broadcast)--------------------------- TIP 1: if posting/reading through Usenet, please send an appropriate subscribe-nomail command to [EMAIL PROTECTED] so that your message can get through to the mailing list cleanly