mirror of
https://github.com/postgres/postgres.git
synced 2026-02-25 19:02:00 -05:00
Fix the regression test error message for array_fill, too.
Per note from Andrew Dunstan.
This commit is contained in:
parent
a8a5595fc8
commit
c5593d5405
1 changed files with 1 additions and 1 deletions
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Reference in a new issue