om仓迁移

This commit is contained in:
hangjin2020
2020-12-16 17:25:24 +08:00
parent ff6341ac90
commit a2679f0cf7
312 changed files with 99629 additions and 0 deletions

View File

@ -0,0 +1,6 @@
SELECT
n.nspname AS schemaname,
p.proname AS proname
FROM pg_catalog.pg_proc p
LEFT JOIN pg_catalog.pg_namespace n ON n.oid = p.pronamespace
where p.oid > 16384 and proisagg;