mirror of
https://github.com/dbgate/dbgate
synced 2024-11-08 12:47:25 +00:00
11 lines
330 B
JavaScript
11 lines
330 B
JavaScript
module.exports = `
|
|
select
|
|
routine_name as "pureName",
|
|
routine_schema as "schemaName",
|
|
md5(routine_definition) as "hashCode",
|
|
routine_type as "objectType"
|
|
from
|
|
information_schema.routines where routine_schema != 'information_schema' and routine_schema != 'pg_catalog'
|
|
and routine_type in ('PROCEDURE', 'FUNCTION')
|
|
`;
|