I want to be able to SELECT the code of a Function. When I try this Query:
select prosrc from pg_proc where proname = 'my_proc'
I get an empty column.
The thing is, it seems column prosrc does hold the function text. When I try this Query:
select proname from pg_proc where prosrc ~* 'part of Function text'
I get the correct number and names of Functions. It just doesn't display prosrc. Any idea?
PostgreSQL 8.2. pgAdmin III 1.12.2.
Thanks.
