]> granicus.if.org Git - postgresql/commit
Require that array literals produce "rectangular" arrays, i.e. all the
authorJoe Conway <mail@joeconway.com>
Thu, 5 Aug 2004 03:30:44 +0000 (03:30 +0000)
committerJoe Conway <mail@joeconway.com>
Thu, 5 Aug 2004 03:30:44 +0000 (03:30 +0000)
commit0e13d627bebad769498696b5fd0ac821bde5140d
treefa38c02b12546fa68889ec06c8375dc901de36c3
parent39ec59f30fde11fede88a33e17357f794689310e
Require that array literals produce "rectangular" arrays, i.e. all the
subarrays of a given dimension have the same number of elements/subarrays.

Also repair a longstanding undocumented (as far as I can see) ability to
explicitly set array bounds in the array literal syntax. It now can
deal properly with negative array indicies. Modify array_out so that
arrays with non-standard lower bounds (i.e. not 1) are output with
the expicit dimension syntax. This fixes a longstanding issue whereby
arrays with non-default lower bounds had them changed to default
after a dump/reload cycle.

Modify regression tests and docs to suit, and add some minimal
documentation regarding the explicit dimension syntax.
doc/src/sgml/array.sgml
src/backend/utils/adt/arrayfuncs.c
src/test/regress/expected/arrays.out
src/test/regress/expected/domain.out
src/test/regress/sql/domain.sql