Improved Pg test matrix (#616)

* 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
This commit is contained in:
Dan Sosedoff
2022-12-12 18:58:00 -06:00
committed by GitHub
parent 4c40eef99a
commit 0dfec506cf
6 changed files with 77 additions and 11 deletions

View File

@@ -1,5 +1,8 @@
SELECT
p.*,
p.oid,
p.proname,
p.pronamespace,
p.proowner,
pg_get_functiondef(oid) AS functiondef
FROM
pg_catalog.pg_proc p

View File

@@ -40,7 +40,6 @@ WITH all_objects AS (
WHERE
n.nspname !~ '^pg_toast'
AND n.nspname NOT IN ('information_schema', 'pg_catalog')
AND p.prokind = 'f'
)
SELECT * FROM all_objects
ORDER BY 1, 2