Re: min() and NaN

From: Michael Tibbetts <tibbetts(at)head-cfa(dot)harvard(dot)edu>
To: Tom Lane <tgl(at)sss(dot)pgh(dot)pa(dot)us>
Cc: Bruce Momjian <pgman(at)candle(dot)pha(dot)pa(dot)us>, Jean-Luc Lachance <jllachan(at)nsd(dot)ca>, "Michael S(dot) Tibbetts" <mtibbetts(at)head-cfa(dot)cfa(dot)harvard(dot)edu>, pgsql-sql(at)postgresql(dot)org
Subject: Re: min() and NaN
Date: 2003-07-22 14:03:24
Message-ID: 200307221403.h6ME3Oxj007225@head-cfa.cfa.harvard.edu
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-sql

Treating NaN's as larger(or smaller) than all ordinary values seems a fine way
to go.

It avoids the situation where you request MIN and get an ordinary value which
is greater than the minimum ordinary value in the table. If MIN(or MAX given
the ordering you're suggesting) returns NaN, the user would stand better odds
of figuring out that something about the query needs to be changed.

Returning an plausible, though possibly incorrect, ordinary value from MIN or
MAX if there are NaN's in the column can lead users to make some unfortunate
mistakes(voice of experience?).

Thanks for your help,
Mike

> Bruce Momjian <pgman(at)candle(dot)pha(dot)pa(dot)us> writes:
> > Is this a TODO?
>
> It'll only take ten minutes to make it a DONE, once we figure out what
> the behavior ought to be. So far I think both Stephan and I argued that
> MIN/MAX ought to treat NaN as larger than all ordinary values, for
> consistency with the comparison operators. That was not the behavior
> Michael wanted, but I don't see that we have much choice given the
> wording of the SQL spec. Does anyone want to argue against that
> definition?
>
> regards, tom lane

Browse pgsql-sql by date

  From Date Subject
Next Message Cristian Cappo A. 2003-07-22 14:19:29 Re: How access to array component
Previous Message Peter Eisentraut 2003-07-22 09:34:54 Re: time delay function