summaryrefslogtreecommitdiff
path: root/src/test
diff options
context:
space:
mode:
authorPeter Eisentraut2011-05-20 21:50:35 +0000
committerPeter Eisentraut2011-05-20 21:50:35 +0000
commitbcf63a51e3dbf7cdb70af03ed13e6984dee41ec0 (patch)
treebdc42cbbcea958f9559c4ea56b6173acfa72ca9a /src/test
parentc8e0c321194c985a13e7c7e4d3110ac032517350 (diff)
Message style improvements
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.