File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change 1
- /* $PostgreSQL: pgsql/contrib/pg_trgm/pg_trgm.sql.in,v 1.6 2007/11/13 04:24:28 momjian Exp $ */
1
+ /* $PostgreSQL: pgsql/contrib/pg_trgm/pg_trgm.sql.in,v 1.7 2007/12/09 02:22:46 tgl Exp $ */
2
2
3
3
-- Adjust this setting to control where the objects get created.
4
4
SET search_path = public;
5
5
6
6
CREATE OR REPLACE FUNCTION set_limit(float4)
7
7
RETURNS float4
8
8
AS 'MODULE_PATHNAME'
9
- LANGUAGE C STRICT IMMUTABLE ;
9
+ LANGUAGE C STRICT VOLATILE ;
10
10
11
11
CREATE OR REPLACE FUNCTION show_limit()
12
12
RETURNS float4
13
13
AS 'MODULE_PATHNAME'
14
- LANGUAGE C STRICT IMMUTABLE ;
14
+ LANGUAGE C STRICT STABLE ;
15
15
16
16
CREATE OR REPLACE FUNCTION show_trgm(text)
17
17
RETURNS _text
@@ -26,7 +26,7 @@ LANGUAGE C STRICT IMMUTABLE;
26
26
CREATE OR REPLACE FUNCTION similarity_op(text,text)
27
27
RETURNS bool
28
28
AS 'MODULE_PATHNAME'
29
- LANGUAGE C STRICT IMMUTABLE ;
29
+ LANGUAGE C STRICT STABLE ;
30
30
31
31
CREATE OPERATOR % (
32
32
LEFTARG = text,
You can’t perform that action at this time.
0 commit comments