limits of max, min optimization - Mailing list pgsql-hackers

From Pavel Stehule
Subject limits of max, min optimization
Date
Msg-id CAFj8pRCTq7-UDKyVbh=rGY4UtJV2csqQuum0e2u7C+XcmqLXuA@mail.gmail.com
Whole thread Raw
Responses Re: limits of max, min optimization
List pgsql-hackers
Hi

I am trying to fix one slow query, and found that optimization of min, max functions is possible only when there is no JOIN in the query.

Is it true?

I need to do manual transformation of query

select max(insert_date) from foo join boo on foo.boo_id = boo.id
where foo.item_id = 100 and boo.is_ok

to

select insert_date from foo join boo on foo.boo_id = boo.id
where foo.item_id = 100 and boo.is_ok order by insert_date desc limit 1;

Regards

Pavel

pgsql-hackers by date:

Previous
From: Justin Pryzby
Date:
Subject: Re: MERGE and parsing with prepared statements
Next
From: Tom Lane
Date:
Subject: Re: Proposal to introduce a shuffle function to intarray extension