diff options
author | Bruce Momjian | 2002-09-20 03:42:39 +0000 |
---|---|---|
committer | Bruce Momjian | 2002-09-20 03:42:39 +0000 |
commit | 1336ecb33266d799c0cf7d8029d379d1dc1c106a (patch) | |
tree | 3427d812d877e5ba25929be6b39bae21edddbc5b /contrib/fulltextindex | |
parent | 674818dce8cdce642727d6fb43e77063fca694b1 (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.in | 2 |
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; |