diff -U3 /tmp/cirrus-ci-build/src/test/regress/expected/inherit.out /tmp/cirrus-ci-build/build/testrun/regress-running/regress/results/inherit.out --- /tmp/cirrus-ci-build/src/test/regress/expected/inherit.out 2024-10-24 16:34:14.520987000 +0000 +++ /tmp/cirrus-ci-build/build/testrun/regress-running/regress/results/inherit.out 2024-10-24 16:38:52.818428000 +0000 @@ -1289,21 +1289,13 @@ insert into inh_fk_2_child values (111, 1), (222, 2); delete from inh_fk_1 where a = 1; select * from inh_fk_1 order by 1; - a ---- - 2 - 3 -(2 rows) - +ERROR: error triggered for injection point typecache-before-rel-type-cache-insert +LINE 1: select * from inh_fk_1 order by 1; + ^ select * from inh_fk_2 order by 1, 2; - x | y ------+--- - 22 | 2 - 33 | 3 - 111 | 1 - 222 | 2 -(4 rows) - +ERROR: error triggered for injection point typecache-before-rel-type-cache-insert +LINE 1: select * from inh_fk_2 order by 1, 2; + ^ drop table inh_fk_1, inh_fk_2, inh_fk_2_child; -- Test that parent and child CHECK constraints can be created in either order create table p1(f1 int);