diff -U3 /tmp/cirrus-ci-build/src/test/regress/expected/partition_info.out /tmp/cirrus-ci-build/src/test/recovery/tmp_check/results/partition_info.out --- /tmp/cirrus-ci-build/src/test/regress/expected/partition_info.out 2025-12-13 16:11:09.908504191 +0000 +++ /tmp/cirrus-ci-build/src/test/recovery/tmp_check/results/partition_info.out 2025-12-13 16:21:26.706160926 +0000 @@ -352,7 +352,14 @@ -- Test about selection of arbiter indexes for partitioned tables with -- non-valid index on the parent table CREATE TABLE pt (a int PRIMARY KEY) PARTITION BY RANGE (a); +ERROR: relation "pt" already exists CREATE TABLE p1 PARTITION OF pt FOR VALUES FROM (1) to (2) PARTITION BY RANGE (a); +ERROR: Inheriting from a table with a PERIOD is not supported CREATE TABLE p1_1 PARTITION OF p1 FOR VALUES FROM (1) TO (2); +ERROR: relation "p1" does not exist CREATE UNIQUE INDEX ON ONLY p1 (a); +ERROR: relation "p1" does not exist INSERT INTO p1 VALUES (1) ON CONFLICT (a) DO NOTHING; +ERROR: relation "p1" does not exist +LINE 1: INSERT INTO p1 VALUES (1) ON CONFLICT (a) DO NOTHING; + ^