Source of User Defined functions.

Поиск
Список
Период
Сортировка
От Saii
Тема Source of User Defined functions.
Дата
Msg-id a4213bce0809091349k4f4c8c68ic2d05d3792e443d9@mail.gmail.com
обсуждение исходный текст
Ответы Re: Source of User Defined functions.
Список pgsql-admin
Hello,

  I have a questions regarding the location of source code of user defined functions in Postgres. I used the following query to get all function names but I
  do not see the source code of the user defined functions. In the 'prosrc' column, data is available for trigger functions only. Is there any other table/column where function source code can be found?

SELECT p.proname, p.pronargs, t.typname,p.proowner, p.prosrc
  FROM pg_proc p, pg_language l, pg_type t
  WHERE p.prolang = l.oid
    and p.prorettype = t.oid
    and l.lanname in ('sql', 'plpgsql'  )
    and proowner = 964227
  ORDER BY proname;


  Thanks much
  Saii

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

Предыдущее
От: "Kasia Tuszynska"
Дата:
Сообщение: moving tablespaces on windows - is it possible?
Следующее
От: Alvaro Herrera
Дата:
Сообщение: Re: Source of User Defined functions.