pgsql: Add array_contains_nulls() function in arrayfuncs.c.

From: Tom Lane <tgl(at)sss(dot)pgh(dot)pa(dot)us>
To: pgsql-committers(at)postgresql(dot)org
Subject: pgsql: Add array_contains_nulls() function in arrayfuncs.c.
Date: 2011-01-09 01:27:27
Message-ID: E1Pbk47-0002QE-K6@gemulon.postgresql.org
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-committers

Add array_contains_nulls() function in arrayfuncs.c.

This will support fixing contrib/intarray (and probably other places)
so that they don't have to fail on arrays that contain a null bitmap
but no live null entries.

Branch
------
master

Details
-------
http://git.postgresql.org/gitweb?p=postgresql.git;a=commitdiff;h=adf328c0e1bfde90b944d53f7197fc436bc0c707

Modified Files
--------------
src/backend/utils/adt/arrayfuncs.c | 47 +++++++++++++++++++++++++++++++++--
src/include/utils/array.h | 1 +
2 files changed, 45 insertions(+), 3 deletions(-)

Browse pgsql-committers by date

  From Date Subject
Next Message Tom Lane 2011-01-09 05:39:39 pgsql: Fix assorted corner-case bugs in contrib/intarray.
Previous Message Michael Meskes 2011-01-08 22:05:10 pgsql: In ecpg's parser removed a fixed length limit for constants defi