summaryrefslogtreecommitdiff
path: root/src/test
diff options
context:
space:
mode:
Diffstat (limited to 'src/test')
-rw-r--r--src/test/regress/expected/arrays.out4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/test/regress/expected/arrays.out b/src/test/regress/expected/arrays.out
index 7b05ce33548..6e5534995d9 100644
--- a/src/test/regress/expected/arrays.out
+++ b/src/test/regress/expected/arrays.out
@@ -1292,9 +1292,9 @@ select array_fill('juhu'::text, array[3,3]);
-- raise exception
select array_fill(1, null, array[2,2]);
-ERROR: dimension array or low bound array cannot be NULL
+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
+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
DETAIL: Low bound array has different size than dimensions array.