Re: pg_get_functiondef(), trailing spaces and + sign

Поиск
Список
Период
Сортировка
От Adrian Klaver
Тема Re: pg_get_functiondef(), trailing spaces and + sign
Дата
Msg-id 8a54a6aa-3dde-8662-382d-a810b6d000c7@aklaver.com
обсуждение исходный текст
Ответ на pg_get_functiondef(), trailing spaces and + sign  (Ron <ronljohnsonjr@gmail.com>)
Ответы Re: pg_get_functiondef(), trailing spaces and + sign  (Kirk Wolak <wolakk@gmail.com>)
Список pgsql-general
On 2/27/23 11:34 AM, Ron wrote:
> Is there any direct way in Postgresql to get rid of the frankly 
> anti-useful junk at the end of each line (which also infects 
> pg_stat_activity.query), or must I resort to sed post-processing?
> 
> 

Or

\ef foo

> test=# select pg_get_functiondef(oid)
> test-# from pg_proc
> test-# where proname = 'foo';
>                   pg_get_functiondef
> ----------------------------------------------------
>   CREATE OR REPLACE FUNCTION public.foo(bar integer)+
>    RETURNS double precision                         +
>    LANGUAGE plpgsql                                 +
>   AS $function$                                     +
>   begin                                             +
>       return bar * 1.0;                             +
>   end;                                              +
>   $function$                                        +
> 
> (1 row)
> 
> 


-- 
Adrian Klaver
adrian.klaver@aklaver.com



В списке pgsql-general по дате отправления:

Предыдущее
От: Adrian Klaver
Дата:
Сообщение: Re: pg_get_functiondef(), trailing spaces and + sign
Следующее
От: Adrian Klaver
Дата:
Сообщение: Re: Tempory table is not getting created inside Function in postgres.