Re: [pgadmin-support] Migrating this list to PGLister on Friday, June 16th, 1300 UTC

2017-06-16 Thread Stephen Frost
Greetings, again! As an FYI, I am beginning the migration of this list now. You may see emails to this list be paused for a period of time, but none is expected to be lost. Thanks! Stephen * Stephen Frost (sfr...@snowman.net) wrote: > Greetings! > > The PostgreSQL Infrastructure team will be

[pgadmin-support] REVOKE PRIVILEGES in SQL tab of selected function

2017-06-16 Thread mammoth.power
Let's say we have this function: CREATE OR REPLACE FUNCTION public.test(in_value character varying) RETURNS character varying LANGUAGE 'plpgsql' COST 100.0 VOLATILE LEAKPROOF SECURITY DEFINER AS $$ BEGIN RETURN in_value; END; $$; ALTER FUNCTION public.test(character varying) OWNER