aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlvaro Herrera <alvherre@alvh.no-ip.org>2009-04-16 14:43:39 +0000
committerAlvaro Herrera <alvherre@alvh.no-ip.org>2009-04-16 14:43:39 +0000
commitc5593d54056a95b7616089b2f59bf97eec02af9e (patch)
treedc8ff1ae5ee9e2f4e13441b442f67998f8a633b3
parenta8a5595fc82f6b0b5171909ff6cddc494f31539e (diff)
downloadpostgresql-c5593d54056a95b7616089b2f59bf97eec02af9e.tar.gz
postgresql-c5593d54056a95b7616089b2f59bf97eec02af9e.zip
Fix the regression test error message for array_fill, too.
Per note from Andrew Dunstan.
-rw-r--r--src/test/regress/expected/arrays.out2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/test/regress/expected/arrays.out b/src/test/regress/expected/arrays.out
index c7ddc2d7aa5..15f3f6082eb 100644
--- a/src/test/regress/expected/arrays.out
+++ b/src/test/regress/expected/arrays.out
@@ -1023,7 +1023,7 @@ ERROR: dimension array or low bound array cannot be NULL
select array_fill(1, array[2,2], null);
ERROR: dimension array or low bound array cannot be NULL
select array_fill(1, array[3,3], array[1,1,1]);
-ERROR: wrong number of array_subscripts
+ERROR: wrong number of array subscripts
DETAIL: Low bound array has different size than dimensions array.
select array_fill(1, array[1,2,null]);
ERROR: dimension values cannot be null