Re: GRANT access on fti() function

From: Bruce Momjian <pgman(at)candle(dot)pha(dot)pa(dot)us>
To: Christopher Kings-Lynne <chriskl(at)familyhealth(dot)com(dot)au>
Cc: Patches <pgsql-patches(at)postgresql(dot)org>
Subject: Re: GRANT access on fti() function
Date: 2002-09-18 04:53:36
Message-ID: 200209180453.g8I4ra728416@candle.pha.pa.us
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-patches


Your patch has been added to the PostgreSQL unapplied patches list at:

http://candle.pha.pa.us/cgi-bin/pgpatches

I will try to apply it within the next 48 hours.

---------------------------------------------------------------------------

Christopher Kings-Lynne wrote:
> 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;
> +
>
>
> ---------------------------(end of broadcast)---------------------------
> TIP 3: if posting/reading through Usenet, please send an appropriate
> subscribe-nomail command to majordomo(at)postgresql(dot)org so that your
> message can get through to the mailing list cleanly
>

--
Bruce Momjian | http://candle.pha.pa.us
pgman(at)candle(dot)pha(dot)pa(dot)us | (610) 359-1001
+ If your life is a hard drive, | 13 Roberts Road
+ Christ can be your backup. | Newtown Square, Pennsylvania 19073

In response to

Browse pgsql-patches by date

  From Date Subject
Next Message Bruce Momjian 2002-09-18 04:54:03 Re: Bug #758: show_planner_stats does not work for new PREPARE
Previous Message Bruce Momjian 2002-09-18 04:53:18 Re: CREATE DOMAIN doc fix