File tree Expand file tree Collapse file tree 5 files changed +7
-7
lines changed Expand file tree Collapse file tree 5 files changed +7
-7
lines changed Original file line number Diff line number Diff line change 11select
2- p .oid as id,
2+ p .oid :: int8 as id,
33 n .nspname as schema,
44 p .proname as name,
55 l .lanname as language,
1313 pg_proc p
1414 left join pg_namespace n on p .pronamespace = n .oid
1515 left join pg_language l on p .prolang = l .oid
16- left join pg_type t on t .oid = p .prorettype
16+ left join pg_type t on t .oid = p .prorettype
Original file line number Diff line number Diff line change 11select
2- pol .oid as id,
2+ pol .oid :: int8 as id,
33 n .nspname AS schema,
44 c .relname AS table,
55 c .oid :: int8 AS table_id,
Original file line number Diff line number Diff line change 11SELECT
2- p .oid AS id,
2+ p .oid :: int8 AS id,
33 p .pubname AS name,
44 p .pubowner :: regrole AS owner,
55 p .pubinsert AS publish_insert,
Original file line number Diff line number Diff line change 11-- TODO: Consider using pg_authid vs. pg_roles for unencrypted password field
22SELECT
3+ oid :: int8 AS id,
34 rolname AS name,
45 rolsuper AS is_superuser,
56 rolcreatedb AS can_create_db,
1415 END AS connection_limit,
1516 rolpassword AS password,
1617 rolvaliduntil AS valid_until,
17- rolconfig AS config,
18- oid AS id
18+ rolconfig AS config
1919FROM
2020 pg_catalog .pg_roles
2121 INNER JOIN LATERAL (
Original file line number Diff line number Diff line change 11SELECT
2- t .oid AS id,
2+ t .oid :: int8 AS id,
33 t .typname AS name,
44 n .nspname AS schema,
55 pg_catalog .Format_type (t .oid , NULL ) AS format,
You can’t perform that action at this time.
0 commit comments