We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see ourdocumentation.
There was an error while loading.Please reload this page.
1 parent9fd8843 commitcb1ab30Copy full SHA for cb1ab30
contrib/pg_trgm/pg_trgm.sql.in
@@ -1,17 +1,17 @@
1
-/* $PostgreSQL: pgsql/contrib/pg_trgm/pg_trgm.sql.in,v 1.6 2007/11/13 04:24:28 momjian Exp $ */
+/* $PostgreSQL: pgsql/contrib/pg_trgm/pg_trgm.sql.in,v 1.7 2007/12/09 02:22:46 tgl Exp $ */
2
3
-- Adjust this setting to control where the objects get created.
4
SET search_path = public;
5
6
CREATE OR REPLACE FUNCTION set_limit(float4)
7
RETURNS float4
8
AS 'MODULE_PATHNAME'
9
-LANGUAGE C STRICTIMMUTABLE;
+LANGUAGE C STRICTVOLATILE;
10
11
CREATE OR REPLACE FUNCTION show_limit()
12
13
14
+LANGUAGE C STRICTSTABLE;
15
16
CREATE OR REPLACE FUNCTION show_trgm(text)
17
RETURNS _text
@@ -26,7 +26,7 @@ LANGUAGE C STRICT IMMUTABLE;
26
CREATE OR REPLACE FUNCTION similarity_op(text,text)
27
RETURNS bool
28
29
30
31
CREATE OPERATOR % (
32
LEFTARG = text,