Fix indentation in SQL file

This commit is contained in:
Peter Eisentraut 2023-09-14 09:42:43 +02:00
parent be022908cf
commit be6f7cd9bb
1 changed files with 2 additions and 2 deletions

View File

@ -823,9 +823,9 @@ CREATE VIEW constraint_column_usage AS
AND r.relkind IN ('r', 'p')
AND NOT a.attisdropped
UNION ALL
UNION ALL
/* not-null constraints */
/* not-null constraints */
SELECT DISTINCT nr.nspname, r.relname, r.relowner, a.attname, nc.nspname, c.conname
FROM pg_namespace nr, pg_class r, pg_attribute a, pg_namespace nc, pg_constraint c
WHERE nr.oid = r.relnamespace