contrib/fuzzystringmatch GRANTs - Mailing list pgsql-patches

From Joe Conway
Subject contrib/fuzzystringmatch GRANTs
Date
Msg-id 3D82242A.3050806@joeconway.com
Whole thread Raw
Responses Re: contrib/fuzzystringmatch GRANTs
List pgsql-patches
The attached adds GRANTs to PUBLIC for contrib/fuzzystringmatch.

Please apply.

Thanks,

Joe
Index: contrib/fuzzystrmatch/fuzzystrmatch.sql.in
===================================================================
RCS file: /opt/src/cvs/pgsql-server/contrib/fuzzystrmatch/fuzzystrmatch.sql.in,v
retrieving revision 1.2
diff -c -r1.2 fuzzystrmatch.sql.in
*** contrib/fuzzystrmatch/fuzzystrmatch.sql.in    7 Aug 2001 18:16:01 -0000    1.2
--- contrib/fuzzystrmatch/fuzzystrmatch.sql.in    13 Sep 2002 17:36:43 -0000
***************
*** 9,11 ****
--- 9,16 ----

  CREATE FUNCTION text_soundex(text) RETURNS text
    AS 'MODULE_PATHNAME', 'soundex' LANGUAGE 'c';
+
+ GRANT EXECUTE ON FUNCTION levenshtein (text,text) TO PUBLIC;
+ GRANT EXECUTE ON FUNCTION metaphone (text,int) TO PUBLIC;
+ GRANT EXECUTE ON FUNCTION soundex(text) TO PUBLIC;
+ GRANT EXECUTE ON FUNCTION text_soundex(text) TO PUBLIC;

pgsql-patches by date:

Previous
From: Joe Conway
Date:
Subject: contrib/tablefunc fixes (GRANTs to PUBLIC, use CREATE TYPE vice CREATE VIEW)
Next
From: Neil Conway
Date:
Subject: cosmetic fixes