Re: handling of COUNT(record) vs IS NULL - Mailing list pgsql-general

From Sam Mason
Subject Re: handling of COUNT(record) vs IS NULL
Date
Msg-id 20080128215959.GS18990@frubble.xen.chris-lamb.co.uk
Whole thread Raw
In response to Re: handling of COUNT(record) vs IS NULL  (Tom Lane <tgl@sss.pgh.pa.us>)
List pgsql-general
On Mon, Jan 28, 2008 at 04:38:01PM -0500, Tom Lane wrote:
> Sam Mason <sam@samason.me.uk> writes:
> > I've just noticed that the handling of COUNT(record) and (record IS
> > NULL) aren't consistent with my understanding of them.  If I run the
> > following query:
>
> >   SELECT
> >      NULL       IS NULL, COUNT( NULL      ),
> >     (NULL,NULL) IS NULL, COUNT((NULL,NULL));
>
> > The IS NULL checks both return TRUE as I'd expect them to, but the
> > second count doesn't return 0.
>
> THe fourth of those isn't really valid SQL.  According to SQL99,
> IS NULL takes a <row value expression> as argument, so it's valid
> to do (NULL,NULL) IS NULL, but COUNT takes a <value expression>.

But isn't COUNT(*), logically from a syntactic point of view, working
with records?  Or is it really supposed to be a special hack.  My
intuition of the original intent of COUNT(*) is that all tables have
at least one non-null column, so it's safe to rewrite COUNT(*) into
COUNT(1).  In general this doesn't seem correct to me though.

> I don't see anything in the spec suggesting that we are supposed
> to drill down into a rowtype value to see whether all its fields
> are null, in any context other than the IS [NOT] NULL predicate.

I believe that somewhere in the spec COUNT is defined to return the
count of non-null rows.  If so, then the behaviour of COUNT isn't
consistent with IS NULL and if the spec only defines the behaviour for
non-record values then you can't look to it for guidance.  Wouldn't it
be better to either ban counts of records or make it follow the same
semantics as the IS NULL predicate.


  Sam

pgsql-general by date:

Previous
From: Gregory Stark
Date:
Subject: Re: handling of COUNT(record) vs IS NULL
Next
From: John Gateley
Date:
Subject: Table has duplicate keys, what did I do