@@ -1997,7 +1997,8 @@ select conrelid::regclass, conname, contype, conkey,
19971997 (select attname from pg_attribute where attrelid = conrelid and attnum = conkey[1]),
19981998 coninhcount, conislocal, connoinherit
19991999 from pg_constraint where contype in ('n','p') and
2000- conrelid in ('inh_child'::regclass, 'inh_parent'::regclass);
2000+ conrelid in ('inh_child'::regclass, 'inh_parent'::regclass)
2001+ order by 1, 2;
20012002 conrelid | conname | contype | conkey | attname | coninhcount | conislocal | connoinherit
20022003------------+-----------------------+---------+--------+---------+-------------+------------+--------------
20032004 inh_parent | inh_parent_a_not_null | n | {1} | a | 0 | t | f
@@ -2009,7 +2010,8 @@ select conrelid::regclass, conname, contype, conkey,
20092010 (select attname from pg_attribute where attrelid = conrelid and attnum = conkey[1]),
20102011 coninhcount, conislocal, connoinherit
20112012 from pg_constraint where contype in ('n','p') and
2012- conrelid in ('inh_child'::regclass, 'inh_parent'::regclass);
2013+ conrelid in ('inh_child'::regclass, 'inh_parent'::regclass)
2014+ order by 1, 2;
20132015 conrelid | conname | contype | conkey | attname | coninhcount | conislocal | connoinherit
20142016------------+-----------------------+---------+--------+---------+-------------+------------+--------------
20152017 inh_parent | inh_parent_a_not_null | n | {1} | a | 0 | t | f
@@ -2021,7 +2023,8 @@ select conrelid::regclass, conname, contype, conkey,
20212023 (select attname from pg_attribute where attrelid = conrelid and attnum = conkey[1]),
20222024 coninhcount, conislocal, connoinherit
20232025 from pg_constraint where contype in ('n','p') and
2024- conrelid in ('inh_child'::regclass, 'inh_parent'::regclass);
2026+ conrelid in ('inh_child'::regclass, 'inh_parent'::regclass)
2027+ order by 1, 2;
20252028 conrelid | conname | contype | conkey | attname | coninhcount | conislocal | connoinherit
20262029----------+---------+---------+--------+---------+-------------+------------+--------------
20272030(0 rows)
0 commit comments