|
|
|
@ -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. |
|
|
|
|