From: Alvaro Herrera Date: Thu, 16 Apr 2009 14:43:39 +0000 (+0000) Subject: Fix the regression test error message for array_fill, too. X-Git-Url: http://git.postgresql.org/gitweb/static/gitweb.js?a=commitdiff_plain;h=3a2754a3dc1a9f14b961b4a456008a01a8947eee;p=users%2Fsimon%2Fpostgres.git Fix the regression test error message for array_fill, too. Per note from Andrew Dunstan. --- diff --git a/src/test/regress/expected/arrays.out b/src/test/regress/expected/arrays.out index c7ddc2d7aa..15f3f6082e 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