Re: array_length() - Mailing list pgsql-hackers

From Tom Lane
Subject Re: array_length()
Date
Msg-id 14206.1225898117@sss.pgh.pa.us
Whole thread Raw
In response to Re: array_length()  (Peter Eisentraut <peter_e@gmx.net>)
Responses Re: array_length()  ("Robert Haas" <robertmhaas@gmail.com>)
List pgsql-hackers
Peter Eisentraut <peter_e@gmx.net> writes:
> There is a tiny problem with this implementation: It returns null for an 
> empty array, not zero.  This is because array_lower and/or array_upper 
> return null for an empty array, which makes sense for those cases.  We 
> could fix this by putting a coalesce around the expression, but since 
> the array functions return null for all kinds of error cases, this might 
> mask other problems.  Or we move to a C implementation.

Basic functionality like this shouldn't be implemented as a SQL function
anyway.  People don't expect that some built-in functions should be
several orders of magnitude slower than other built-in functions of
apparently similar complexity.
        regards, tom lane


pgsql-hackers by date:

Previous
From: Joshua Tolley
Date:
Subject: Re: Proposed Patch to Improve Performance of Multi-Batch Hash Join for Skewed Data Sets
Next
From: Andrew Dunstan
Date:
Subject: Re: The suppress_redundant_updates_trigger() works incorrectly