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

From Ed Loehr
Subject Re: btree index and max()
Date
Msg-id 3936BA3A.520A5ADC@austin.rr.com
Whole thread Raw
In response to Re: btree index and max()  (Bruce Momjian <pgman@candle.pha.pa.us>)
List pgsql-general
Bruce Momjian wrote:
>
> > 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.  :(
>
> That would be a good optimization.  Let me add it to the TODO list.
> Much better than trying to keep the max stored somewhere.

There was a lot of discussion about this on the hackers list recently,
but I don't recall the outcome.

Regards,
Ed Loehr

pgsql-general by date:

Previous
From: Bruce Momjian
Date:
Subject: Re: btree index and max()
Next
From: Bruce Momjian
Date:
Subject: Re: shared memory