Re: Slow views - Mailing list pgsql-bugs

From Tom Lane
Subject Re: Slow views
Date
Msg-id 1305.1090037080@sss.pgh.pa.us
Whole thread Raw
In response to Re: Slow views  (Stephan Szabo <sszabo@megazone.bigpanda.com>)
Responses Re: Slow views  (David Newall <davidn-postgres@rebel.net.au>)
List pgsql-bugs
Stephan Szabo <sszabo@megazone.bigpanda.com> writes:
> You also did an optimization, removing the subquery which PostgreSQL
> isn't.

I suspect the real issue is that the implied join order is not the same.
The view-based query is really

    a LEFT JOIN (b LEFT JOIN c LEFT JOIN d LEFT JOIN e)

while the allegedly equivalent hand expansion is

    a LEFT JOIN b LEFT JOIN c LEFT JOIN d LEFT JOIN e

and since JOIN associates left-to-right, this is not the same thing at
all.  I'm not even convinced that it gives the same end result ...
INNER JOIN is associative but LEFT JOIN is not.

            regards, tom lane

pgsql-bugs by date:

Previous
From: Nishad Prakash
Date:
Subject: Cannot recreate DB scheme using pg_dump
Next
From: Tom Lane
Date:
Subject: Re: Replace function BUG