Skip to content

Commit be6f7cd

Browse files
committed
Fix indentation in SQL file
1 parent be02290 commit be6f7cd

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/backend/catalog/information_schema.sql

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -823,9 +823,9 @@ CREATE VIEW constraint_column_usage AS
823823
AND r.relkind IN ('r', 'p')
824824
AND NOT a.attisdropped
825825

826-
UNION ALL
826+
UNION ALL
827827

828-
/* not-null constraints */
828+
/* not-null constraints */
829829
SELECT DISTINCT nr.nspname, r.relname, r.relowner, a.attname, nc.nspname, c.conname
830830
FROM pg_namespace nr, pg_class r, pg_attribute a, pg_namespace nc, pg_constraint c
831831
WHERE nr.oid = r.relnamespace

0 commit comments

Comments
 (0)