Commit c5593d54 authored by Alvaro Herrera's avatar Alvaro Herrera

Fix the regression test error message for array_fill, too.

Per note from Andrew Dunstan.
parent a8a5595f
...@@ -1023,7 +1023,7 @@ ERROR: dimension array or low bound array cannot be NULL ...@@ -1023,7 +1023,7 @@ ERROR: dimension array or low bound array cannot be NULL
select array_fill(1, array[2,2], 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]); 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. DETAIL: Low bound array has different size than dimensions array.
select array_fill(1, array[1,2,null]); select array_fill(1, array[1,2,null]);
ERROR: dimension values cannot be null ERROR: dimension values cannot be null
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment