| From: | "Christopher Kings-Lynne" <chriskl(at)familyhealth(dot)com(dot)au> |
|---|---|
| To: | "Patches" <pgsql-patches(at)postgresql(dot)org> |
| Subject: | GRANT access on fti() function |
| Date: | 2002-09-16 02:15:43 |
| Message-ID: | GNELIHDDFBOCMGBFGEFOEEDOCEAA.chriskl@familyhealth.com.au |
| Views: | Whole Thread | Raw Message | Download mbox | Resend email |
| Thread: | |
| Lists: | pgsql-patches |
This grants execute privileges to public for the fti() function. Should we
go through and give all the contribs grants?
Chris
Index: fti.sql.in
===================================================================
RCS file: /projects/cvsroot/pgsql-server/contrib/fulltextindex/fti.sql.in,v
retrieving revision 1.5
diff -c -r1.5 fti.sql.in
*** fti.sql.in 2002/09/02 06:27:04 1.5
--- fti.sql.in 2002/09/16 02:14:17
***************
*** 1,3 ****
--- 1,6 ----
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;
+
| From | Date | Subject | |
|---|---|---|---|
| Next Message | Neil Conway | 2002-09-16 03:17:36 | Re: Bug #758: show_planner_stats does not work for new PREPARE calls |
| Previous Message | Neil Conway | 2002-09-16 00:37:25 | CREATE DOMAIN doc fix |