From: | tgl(at)postgresql(dot)org (Tom Lane) |
---|---|
To: | pgsql-committers(at)postgresql(dot)org |
Subject: | pgsql: Implement the basic form of UNNEST, ie unnest(anyarray) returns |
Date: | 2008-11-14 00:51:47 |
Message-ID: | 20081114005147.6EB787545A4@cvs.postgresql.org |
Views: | Whole Thread | Raw Message | Download mbox | Resend email |
Thread: | |
Lists: | pgsql-committers |
Log Message:
-----------
Implement the basic form of UNNEST, ie unnest(anyarray) returns setof
anyelement. This lacks the WITH ORDINALITY option, as well as the multiple
input arrays option added in the most recent SQL specs. But it's still a
pretty useful subset of the spec's functionality, and it is enough to
allow obsoleting contrib/intagg.
Modified Files:
--------------
pgsql/doc/src/sgml:
func.sgml (r1.459 -> r1.460)
(http://anoncvs.postgresql.org/cvsweb.cgi/pgsql/doc/src/sgml/func.sgml?r1=1.459&r2=1.460)
pgsql/src/backend/utils/adt:
arrayfuncs.c (r1.149 -> r1.150)
(http://anoncvs.postgresql.org/cvsweb.cgi/pgsql/src/backend/utils/adt/arrayfuncs.c?r1=1.149&r2=1.150)
pgsql/src/include/catalog:
catversion.h (r1.505 -> r1.506)
(http://anoncvs.postgresql.org/cvsweb.cgi/pgsql/src/include/catalog/catversion.h?r1=1.505&r2=1.506)
pg_proc.h (r1.527 -> r1.528)
(http://anoncvs.postgresql.org/cvsweb.cgi/pgsql/src/include/catalog/pg_proc.h?r1=1.527&r2=1.528)
pgsql/src/include/utils:
array.h (r1.71 -> r1.72)
(http://anoncvs.postgresql.org/cvsweb.cgi/pgsql/src/include/utils/array.h?r1=1.71&r2=1.72)
pgsql/src/test/regress/expected:
arrays.out (r1.44 -> r1.45)
(http://anoncvs.postgresql.org/cvsweb.cgi/pgsql/src/test/regress/expected/arrays.out?r1=1.44&r2=1.45)
pgsql/src/test/regress/sql:
arrays.sql (r1.33 -> r1.34)
(http://anoncvs.postgresql.org/cvsweb.cgi/pgsql/src/test/regress/sql/arrays.sql?r1=1.33&r2=1.34)
From | Date | Subject | |
---|---|---|---|
Next Message | Alvaro Herrera | 2008-11-14 01:57:42 | pgsql: Replace the usage of heap_addheader to create pg_attribute tuples |
Previous Message | Tom Lane | 2008-11-14 00:12:08 | pgsql: Minor code clarity improvements in array_agg functions, and add a |