diff -U3 /tmp/cirrus-ci-build/src/test/regress/expected/create_schema.out /tmp/cirrus-ci-build/src/test/recovery/tmp_check/results/create_schema.out --- /tmp/cirrus-ci-build/src/test/regress/expected/create_schema.out 2026-03-30 14:53:29.654030252 +0000 +++ /tmp/cirrus-ci-build/src/test/recovery/tmp_check/results/create_schema.out 2026-03-30 15:03:38.344967508 +0000 @@ -228,8 +228,9 @@ sale_date | date | | | | plain | | amount | numeric | | | | main | | Partition key: RANGE (sale_date) -Partitions: regress_part_copy.sales_2023 FOR VALUES FROM ('01-01-2023') TO ('01-01-2024'), - regress_part_copy.sales_2024 FOR VALUES FROM ('01-01-2024') TO ('01-01-2025') +Partitions: + regress_part_copy.sales_2023 FOR VALUES FROM ('01-01-2023') TO ('01-01-2024') + regress_part_copy.sales_2024 FOR VALUES FROM ('01-01-2024') TO ('01-01-2025') \d+ regress_part_copy.sales2 Partitioned table "regress_part_copy.sales2" @@ -241,8 +242,9 @@ Partition key: RANGE (EXTRACT(year FROM sale_date)) Not-null constraints: "sales2_id_not_null" NOT NULL "id" -Partitions: regress_part_copy.sales_2025 FOR VALUES FROM ('2024') TO ('2025'), - regress_part_copy.sales_2026 FOR VALUES FROM ('2025') TO ('2026') +Partitions: + regress_part_copy.sales_2025 FOR VALUES FROM ('2024') TO ('2025') + regress_part_copy.sales_2026 FOR VALUES FROM ('2025') TO ('2026') -- Test orphan partitions: parent in different schema -- Create partition in different schema than its parent @@ -277,8 +279,9 @@ category | text | | | | extended | | name | text | | | | extended | | Partition key: LIST (category) -Partitions: regress_list_part_copy.products_clothing FOR VALUES IN ('clothing', 'shoes'), - regress_list_part_copy.products_electronics FOR VALUES IN ('electronics', 'computers') +Partitions: + regress_list_part_copy.products_clothing FOR VALUES IN ('clothing', 'shoes') + regress_list_part_copy.products_electronics FOR VALUES IN ('electronics', 'computers') -- Test hash partitioning CREATE SCHEMA regress_hash_part_source; @@ -301,8 +304,9 @@ id | integer | | | | plain | | event_type | text | | | | extended | | Partition key: HASH (id) -Partitions: regress_hash_part_copy.events_0 FOR VALUES WITH (modulus 2, remainder 0), - regress_hash_part_copy.events_1 FOR VALUES WITH (modulus 2, remainder 1) +Partitions: + regress_hash_part_copy.events_0 FOR VALUES WITH (modulus 2, remainder 0) + regress_hash_part_copy.events_1 FOR VALUES WITH (modulus 2, remainder 1) -- -- Test foreign key handling