@@ -350,7 +350,7 @@ LINE 1: SELECT spoly '{(10d,0d),(10d,1d)}';
350
350
SELECT spoly(ARRAY[1.0, 2.0, 3.0, 4.0, 5.0]);
351
351
ERROR: spherepoly_rad: invalid number of arguments (must be even and >= 6)
352
352
SELECT spoly(ARRAY[1.0, 2.0, 3.0, NULL, 5.0, 6.0]);
353
- ERROR: spherepoly_rad: invalid array has null values
353
+ ERROR: spherepoly_rad: input array is invalid because it has null values
354
354
SELECT spoly(ARRAY[]::float8[]);
355
355
ERROR: spherepoly_rad: invalid number of arguments (must be even and >= 6)
356
356
SELECT spoly(NULL::float8[]);
@@ -362,7 +362,7 @@ SELECT spoly(NULL::float8[]);
362
362
SELECT spoly_deg(ARRAY[1.0, 2.0, 3.0, 4.0, 5.0]);
363
363
ERROR: spherepoly_deg: invalid number of arguments (must be even and >= 6)
364
364
SELECT spoly_deg(ARRAY[1.0, 2.0, 3.0, NULL, 5.0, 6.0]);
365
- ERROR: spherepoly_deg: invalid array has null values
365
+ ERROR: spherepoly_deg: input array is invalid because it has null values
366
366
SELECT spoly_deg(ARRAY[]::float8[]);
367
367
ERROR: spherepoly_deg: invalid number of arguments (must be even and >= 6)
368
368
SELECT spoly_deg(NULL::float8[]);
0 commit comments