summaryrefslogtreecommitdiff
path: root/contrib/fulltextindex
diff options
context:
space:
mode:
authorBruce Momjian2002-09-20 03:42:39 +0000
committerBruce Momjian2002-09-20 03:42:39 +0000
commit1336ecb33266d799c0cf7d8029d379d1dc1c106a (patch)
tree3427d812d877e5ba25929be6b39bae21edddbc5b /contrib/fulltextindex
parent674818dce8cdce642727d6fb43e77063fca694b1 (diff)
This grants execute privileges to public for the fti() function. Should
we go through and give all the contribs grants? Christopher Kings-Lynne
Diffstat (limited to 'contrib/fulltextindex')
-rw-r--r--contrib/fulltextindex/fti.sql.in2
1 files changed, 2 insertions, 0 deletions
diff --git a/contrib/fulltextindex/fti.sql.in b/contrib/fulltextindex/fti.sql.in
index 68c3f1857e..f52a358385 100644
--- a/contrib/fulltextindex/fti.sql.in
+++ b/contrib/fulltextindex/fti.sql.in
@@ -1,3 +1,5 @@
CREATE OR REPLACE FUNCTION fti() RETURNS trigger AS
'MODULE_PATHNAME', 'fti'
LANGUAGE 'C' VOLATILE CALLED ON NULL INPUT;
+
+GRANT EXECUTE ON FUNCTION fti() TO PUBLIC;