diff -U3 /tmp/cirrus-ci-build/src/test/regress/expected/domain.out /tmp/cirrus-ci-build/src/test/regress/results/domain.out --- /tmp/cirrus-ci-build/src/test/regress/expected/domain.out 2024-12-05 03:38:13.069912790 +0000 +++ /tmp/cirrus-ci-build/src/test/regress/results/domain.out 2024-12-05 03:42:50.078185592 +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;