Skip to content

Commit ef2553c

Browse files
committed
Fix expected output for spoly regression tests.
1 parent 9bb5c06 commit ef2553c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Diff for: expected/poly.out

+2-2
Original file line numberDiff line numberDiff line change
@@ -350,7 +350,7 @@ LINE 1: SELECT spoly '{(10d,0d),(10d,1d)}';
350350
SELECT spoly(ARRAY[1.0, 2.0, 3.0, 4.0, 5.0]);
351351
ERROR: spherepoly_rad: invalid number of arguments (must be even and >= 6)
352352
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
354354
SELECT spoly(ARRAY[]::float8[]);
355355
ERROR: spherepoly_rad: invalid number of arguments (must be even and >= 6)
356356
SELECT spoly(NULL::float8[]);
@@ -362,7 +362,7 @@ SELECT spoly(NULL::float8[]);
362362
SELECT spoly_deg(ARRAY[1.0, 2.0, 3.0, 4.0, 5.0]);
363363
ERROR: spherepoly_deg: invalid number of arguments (must be even and >= 6)
364364
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
366366
SELECT spoly_deg(ARRAY[]::float8[]);
367367
ERROR: spherepoly_deg: invalid number of arguments (must be even and >= 6)
368368
SELECT spoly_deg(NULL::float8[]);

0 commit comments

Comments
 (0)