File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -23,7 +23,7 @@ UPDATE pg_catalog.pg_proc SET
23
23
prorettype = ' gtrgm' ::pg_catalog .regtype
24
24
WHERE oid = pg_catalog .to_regprocedure (' gtrgm_union(internal,internal)' );
25
25
26
- ALTER FUNCTION set_limit(float4) PARALLEL RESTRICTED ;
26
+ ALTER FUNCTION set_limit(float4) PARALLEL UNSAFE ;
27
27
ALTER FUNCTION show_limit() PARALLEL SAFE;
28
28
ALTER FUNCTION show_trgm(text ) PARALLEL SAFE;
29
29
ALTER FUNCTION similarity(text , text ) PARALLEL SAFE;
Original file line number Diff line number Diff line change 7
7
CREATE FUNCTION set_limit (float4)
8
8
RETURNS float4
9
9
AS ' MODULE_PATHNAME'
10
- LANGUAGE C STRICT VOLATILE PARALLEL RESTRICTED ;
10
+ LANGUAGE C STRICT VOLATILE PARALLEL UNSAFE ;
11
11
12
12
-- Deprecated function
13
13
CREATE FUNCTION show_limit ()
You can’t perform that action at this time.
0 commit comments