projects
/
postgresql.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
bd04184
)
The attached adds GRANTs to PUBLIC for contrib/fuzzystringmatch.
author
Tom Lane
Sat, 14 Sep 2002 19:56:01 +0000
(19:56 +0000)
committer
Tom Lane
Sat, 14 Sep 2002 19:56:01 +0000
(19:56 +0000)
Joe Conway
contrib/fuzzystrmatch/fuzzystrmatch.sql.in
patch
|
blob
|
blame
|
history
diff --git
a/contrib/fuzzystrmatch/fuzzystrmatch.sql.in
b/contrib/fuzzystrmatch/fuzzystrmatch.sql.in
index b02f1b28ebc278456c207566223531b3fc5d8db2..0be715bac7e182b79b4a5e9a109c149d3fd23d58 100644
(file)
--- a/
contrib/fuzzystrmatch/fuzzystrmatch.sql.in
+++ b/
contrib/fuzzystrmatch/fuzzystrmatch.sql.in
@@
-9,3
+9,8
@@
CREATE FUNCTION soundex(text) RETURNS text
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;