Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 8 additions & 4 deletions sql/cat_tools.sql.in
Original file line number Diff line number Diff line change
Expand Up @@ -775,8 +775,10 @@ CREATE TYPE cat_tools.object_type AS ENUM(
, 'materialized view column'
, 'composite type column'
, 'foreign table column'
-- pg_constraint
-- NOTE: a domain itself is considered to be a type
/*
* pg_constraint
* NOTE: a domain itself is considered to be a type
*/
, 'domain constraint', 'table constraint'
-- pg_proc
, 'aggregate', 'function'
Expand Down Expand Up @@ -1281,8 +1283,10 @@ $$

@generated@

-- Borrowed from newsysviews: http://pgfoundry.org/projects/newsysviews/
-- sql-lint:disable-block all: copied verbatim from newsysviews, do not reformat
/*
* Borrowed from newsysviews: http://pgfoundry.org/projects/newsysviews/
* sql-lint:disable-block all: copied verbatim from newsysviews, do not reformat
*/
CREATE OR REPLACE VIEW cat_tools.pg_all_foreign_keys
AS
SELECT n1.nspname AS fk_schema_name,
Expand Down
Loading