@@ -2218,15 +2218,15 @@ select conrelid::regclass, contype, conname,
2218
2218
from pg_constraint where contype = 'n' and
2219
2219
conrelid::regclass in ('inh_p1', 'inh_p2', 'inh_p3', 'inh_p4',
2220
2220
'inh_multiparent')
2221
- order by 1, 2 ;
2221
+ order by conrelid::regclass::text, conname ;
2222
2222
conrelid | contype | conname | attname | coninhcount | conislocal
2223
2223
-----------------+---------+--------------------+---------+-------------+------------
2224
+ inh_multiparent | n | inh_p1_f1_not_null | f1 | 3 | f
2225
+ inh_multiparent | n | inh_p4_f3_not_null | f3 | 1 | f
2224
2226
inh_p1 | n | inh_p1_f1_not_null | f1 | 0 | t
2225
2227
inh_p2 | n | inh_p2_f1_not_null | f1 | 0 | t
2226
2228
inh_p4 | n | inh_p4_f1_not_null | f1 | 0 | t
2227
2229
inh_p4 | n | inh_p4_f3_not_null | f3 | 0 | t
2228
- inh_multiparent | n | inh_p1_f1_not_null | f1 | 3 | f
2229
- inh_multiparent | n | inh_p4_f3_not_null | f3 | 1 | f
2230
2230
(6 rows)
2231
2231
2232
2232
create table inh_multiparent2 (a int not null, f1 int) inherits(inh_p3, inh_multiparent);
@@ -2237,7 +2237,7 @@ select conrelid::regclass, contype, conname,
2237
2237
coninhcount, conislocal
2238
2238
from pg_constraint where contype = 'n' and
2239
2239
conrelid::regclass in ('inh_p3', 'inh_multiparent', 'inh_multiparent2')
2240
- order by 1, 2 ;
2240
+ order by conrelid::regclass::text, conname ;
2241
2241
conrelid | contype | conname | attname | coninhcount | conislocal
2242
2242
------------------+---------+-----------------------------+---------+-------------+------------
2243
2243
inh_multiparent | n | inh_p1_f1_not_null | f1 | 3 | f
0 commit comments