Fix underspecified sort order in inherit.sql
authorAndres Freund <[email protected]>
Sat, 8 Apr 2023 05:25:46 +0000 (22:25 -0700)
committerAndres Freund <[email protected]>
Sat, 8 Apr 2023 05:25:46 +0000 (22:25 -0700)
Introduced in e056c557aef4.

Per buildfarm member prion.

src/test/regress/expected/inherit.out
src/test/regress/sql/inherit.sql

index b3fd089acc9ba6d65cef7edc11d26c2e1cd2887c..166b4c922fd2816575b7722f5a50540cfbbabae5 100644 (file)
@@ -1997,7 +1997,8 @@ select conrelid::regclass, conname, contype, conkey,
  (select attname from pg_attribute where attrelid = conrelid and attnum = conkey[1]),
  coninhcount, conislocal, connoinherit
  from pg_constraint where contype in ('n','p') and
- conrelid in ('inh_child'::regclass, 'inh_parent'::regclass);
+ conrelid in ('inh_child'::regclass, 'inh_parent'::regclass)
+ order by 1, 2;
   conrelid  |        conname        | contype | conkey | attname | coninhcount | conislocal | connoinherit 
 ------------+-----------------------+---------+--------+---------+-------------+------------+--------------
  inh_parent | inh_parent_a_not_null | n       | {1}    | a       |           0 | t          | f
@@ -2009,7 +2010,8 @@ select conrelid::regclass, conname, contype, conkey,
  (select attname from pg_attribute where attrelid = conrelid and attnum = conkey[1]),
  coninhcount, conislocal, connoinherit
  from pg_constraint where contype in ('n','p') and
- conrelid in ('inh_child'::regclass, 'inh_parent'::regclass);
+ conrelid in ('inh_child'::regclass, 'inh_parent'::regclass)
+ order by 1, 2;
   conrelid  |        conname        | contype | conkey | attname | coninhcount | conislocal | connoinherit 
 ------------+-----------------------+---------+--------+---------+-------------+------------+--------------
  inh_parent | inh_parent_a_not_null | n       | {1}    | a       |           0 | t          | f
@@ -2021,7 +2023,8 @@ select conrelid::regclass, conname, contype, conkey,
  (select attname from pg_attribute where attrelid = conrelid and attnum = conkey[1]),
  coninhcount, conislocal, connoinherit
  from pg_constraint where contype in ('n','p') and
- conrelid in ('inh_child'::regclass, 'inh_parent'::regclass);
+ conrelid in ('inh_child'::regclass, 'inh_parent'::regclass)
+ order by 1, 2;
  conrelid | conname | contype | conkey | attname | coninhcount | conislocal | connoinherit 
 ----------+---------+---------+--------+---------+-------------+------------+--------------
 (0 rows)
index 2ec18de4b8de90d1d1b1d6825a1ec81aaded4891..a8ba2a31a7044becf020240329f5954a654c5977 100644 (file)
@@ -747,19 +747,22 @@ select conrelid::regclass, conname, contype, conkey,
  (select attname from pg_attribute where attrelid = conrelid and attnum = conkey[1]),
  coninhcount, conislocal, connoinherit
  from pg_constraint where contype in ('n','p') and
- conrelid in ('inh_child'::regclass, 'inh_parent'::regclass);
+ conrelid in ('inh_child'::regclass, 'inh_parent'::regclass)
+ order by 1, 2;
 alter table inh_child alter a drop not null;
 select conrelid::regclass, conname, contype, conkey,
  (select attname from pg_attribute where attrelid = conrelid and attnum = conkey[1]),
  coninhcount, conislocal, connoinherit
  from pg_constraint where contype in ('n','p') and
- conrelid in ('inh_child'::regclass, 'inh_parent'::regclass);
+ conrelid in ('inh_child'::regclass, 'inh_parent'::regclass)
+ order by 1, 2;
 alter table inh_parent alter a drop not null;
 select conrelid::regclass, conname, contype, conkey,
  (select attname from pg_attribute where attrelid = conrelid and attnum = conkey[1]),
  coninhcount, conislocal, connoinherit
  from pg_constraint where contype in ('n','p') and
- conrelid in ('inh_child'::regclass, 'inh_parent'::regclass);
+ conrelid in ('inh_child'::regclass, 'inh_parent'::regclass)
+ order by 1, 2;
 drop table inh_parent, inh_child;
 
 -- NOT NULL NO INHERIT