Re: btree index and max() - Mailing list pgsql-general

From Ed Loehr
Subject Re: btree index and max()
Date
Msg-id 3936AE07.EFBBD2F5@austin.rr.com
Whole thread Raw
In response to btree index and max()  (leonbloy@sinectis.com.ar)
Responses Re: btree index and max()  (Bruce Momjian <pgman@candle.pha.pa.us>)
List pgsql-general
leonbloy@sinectis.com.ar wrote:
>
> => explain select max(rid) from facturas;
> NOTICE:  QUERY PLAN:
>
> Aggregate  (cost=21139.66 rows=342414 width=4)
>   ->  Seq Scan on facturas  (cost=21139.66 rows=342414 width=4)
>
> I understand that the query planner cannot be so clever
> to grasp that this particular function (max or min)
> might be evaluated by just travelling the BTREE index.
> Am I correct?

I believe you are unfortunately correct.  :(

Regards,
Ed Loehr

pgsql-general by date:

Previous
From: leonbloy@sinectis.com.ar
Date:
Subject: btree index and max()
Next
From: Ed Loehr
Date:
Subject: Re: ALTERING A TABLE