GRANT access on fti() function - Mailing list pgsql-patches

From Christopher Kings-Lynne
Subject GRANT access on fti() function
Date
Msg-id GNELIHDDFBOCMGBFGEFOEEDOCEAA.chriskl@familyhealth.com.au
Whole thread Raw
Responses Re: GRANT access on fti() function  (Bruce Momjian <pgman@candle.pha.pa.us>)
Re: GRANT access on fti() function  (Bruce Momjian <pgman@candle.pha.pa.us>)
List 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;
+


pgsql-patches by date:

Previous
From: Neil Conway
Date:
Subject: CREATE DOMAIN doc fix
Next
From: Neil Conway
Date:
Subject: Re: [BUGS] Bug #758: show_planner_stats does not work for new PREPARE calls