Re: Unprivileged access to pgsql functions? - Mailing list pgsql-general

From John R Pierce
Subject Re: Unprivileged access to pgsql functions?
Date
Msg-id 4D7161C5.5050600@hogranch.com
Whole thread Raw
In response to Re: Unprivileged access to pgsql functions?  (Matt Warner <matt@warnertechnology.com>)
Responses Re: Unprivileged access to pgsql functions?  (Matt Warner <matt@warnertechnology.com>)
List pgsql-general
On 03/04/11 1:57 PM, Matt Warner wrote:
> Not sure. I believe public and pg_catalog are in the path by default.
> Most of the create function declarations prepend pg_catalog, and I
> believe I saw somewhere that pg_catalog is the default. But I may be
> misunderstanding that...

CREATE FUNCTION nvl(anyelement, anyelement)
RETURNS anyelement
AS '$libdir/orafunc','ora_nvl'
LANGUAGE C IMMUTABLE;

doesn't specify any schema, so that function is created in the current
schema in the current database






pgsql-general by date:

Previous
From: Aleksey Tsalolikhin
Date:
Subject: Re: database is bigger after dump/restore - why? (60 GB to 109 GB)
Next
From: Matt Warner
Date:
Subject: Re: Unprivileged access to pgsql functions?