Re: JOIN performance

From: "Dean Gibson (DB Administrator)" <postgresql3(at)ultimeth(dot)com>
To: pgsql-sql(at)postgresql(dot)org
Subject: Re: JOIN performance
Date: 2004-09-21 04:41:40
Message-ID: 5.1.0.14.2.20040920213442.00ae4450@imaps.mailpen.net
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-sql

It turns out that even when I removed the CASE statement from the VIEW, the
performance problem remained. I had to remove the conditional as well from
the VIEW.

To refresh your memory, there was this line in the VIEW (said VIEW being
the subject of the LEFT JOIN):

cancel_date < expire_date AS canceled,

(cancel_date & expire_date are DATEs in the base view)

When I removed the above line from the VIEW, the performance problem
disappeared.

Do you know why? I'm running 7.3.4, by the way.

-- Dean

In response to

Responses

Browse pgsql-sql by date

  From Date Subject
Next Message Joe Conway 2004-09-21 04:44:02 Re: PL/pgSQL multidimension (matrix) array in function
Previous Message Tom Lane 2004-09-21 04:10:13 Re: JOIN performance