diff --strip-trailing-cr -U3 C:/cirrus/src/test/regress/expected/domain.out C:/cirrus/build/testrun/pg_upgrade/002_pg_upgrade/data/results/domain.out --- C:/cirrus/src/test/regress/expected/domain.out 2024-12-07 08:17:19.438190600 +0000 +++ C:/cirrus/build/testrun/pg_upgrade/002_pg_upgrade/data/results/domain.out 2024-12-07 08:20:34.875579500 +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;