3 -- support functions for gin
4 CREATE OR REPLACE FUNCTION gin_extract_permuted(text, internal)
9 CREATE OR REPLACE FUNCTION wildcmp(text, text)
14 CREATE OR REPLACE FUNCTION wildcmp_prefix(text, text, int2)
19 CREATE OR REPLACE FUNCTION gin_extract_wildcard(text, internal, int2, internal)
24 CREATE OR REPLACE FUNCTION gin_consistent_wildcard(internal, int2, text)
29 CREATE OPERATOR CLASS wildcard_ops
30 FOR TYPE text USING gin
33 FUNCTION 1 wildcmp(text,text),
34 FUNCTION 2 gin_extract_permuted(text, internal),
35 FUNCTION 3 gin_extract_wildcard(text, internal, int2, internal),
36 FUNCTION 4 gin_consistent_wildcard(internal, int2, text),
37 FUNCTION 5 wildcmp_prefix(text,text,int2),
42 CREATE OR REPLACE FUNCTION permute(text)
45 LANGUAGE C STRICT IMMUTABLE;