0dfec506cf
* Add postgres 10/11 to test matrix * Add docker-compose file fo running multiple postgres versions locally * Fix client test for pg 10, modify function details to include specific fields * Try to install latest postgres client * Add concurrency setting
11 lines
152 B
SQL
11 lines
152 B
SQL
SELECT
|
|
p.oid,
|
|
p.proname,
|
|
p.pronamespace,
|
|
p.proowner,
|
|
pg_get_functiondef(oid) AS functiondef
|
|
FROM
|
|
pg_catalog.pg_proc p
|
|
WHERE
|
|
oid = $1::oid
|