mirror of
https://github.com/DeNNiiInc/dbgate.git
synced 2026-04-18 05:36:00 +00:00
11 lines
334 B
JavaScript
11 lines
334 B
JavaScript
module.exports = `
|
|
select
|
|
routine_name as "pure_name",
|
|
routine_schema as "schema_name",
|
|
md5(routine_definition) as "hash_code",
|
|
routine_type as "object_type"
|
|
from
|
|
information_schema.routines where routine_schema != 'information_schema' and routine_schema != 'pg_catalog'
|
|
and routine_type in ('PROCEDURE', 'FUNCTION')
|
|
`;
|