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