We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b6d1705 commit 95f6217Copy full SHA for 95f6217
upgrade_scripts/pg_sphere--1.3.1--1.3.2.sql.in
@@ -22,11 +22,14 @@ CREATE FUNCTION spoly(float8[])
22
RETURNS spoly
23
AS 'MODULE_PATHNAME', 'spherepoly_rad'
24
LANGUAGE 'c'
25
- IMMUTABLE STRICT;
+ IMMUTABLE STRICT PARALLEL SAFE;
26
27
COMMENT ON FUNCTION spoly(float8[]) IS
28
'creates spoly from array of numbers in radians';
29
30
+-- add PARALLEL SAFE to spoly_deg(float8[])
31
+ALTER FUNCTION spoly_deg(float8[]) PARALLEL SAFE;
32
+
33
-- update comment on spoly_deg function
34
COMMENT ON FUNCTION spoly_deg(float8[]) IS
35
'creates spoly from array of numbers in degrees';
0 commit comments