diff -U3 /tmp/cirrus-ci-build/src/test/regress/expected/domain.out /tmp/cirrus-ci-build/build/testrun/pg_upgrade/002_pg_upgrade/data/results/domain.out --- /tmp/cirrus-ci-build/src/test/regress/expected/domain.out 2024-12-07 08:17:09.384826466 +0000 +++ /tmp/cirrus-ci-build/build/testrun/pg_upgrade/002_pg_upgrade/data/results/domain.out 2024-12-07 08:19:30.146307395 +0000 @@ -102,9 +102,9 @@ create domain d_fail as int4 PRIMARY key; ERROR: primary key constraints not possible for domains create domain d_fail as int4 constraint cc generated by default as identity; -ERROR: identity columns are not supported on domains +ERROR: specifying GENERATED not supported for domains create domain d_fail as int4 constraint cc GENERATED ALWAYS AS (2) STORED; -ERROR: generated columns are not supported on domains +ERROR: specifying GENERATED not supported for domains create domain d_fail as int4 constraint cc check (value > 1) INITIALLY DEFERRED; ERROR: specifying constraint deferrability not supported for domains create domain d_fail as int4 constraint cc check(values > 1) no inherit;