diff --git a/src/test/regress/expected/generated_identity.out b/src/test/regress/expected/generated_identity.out index 4ff4974f9..a755f2b6e 100644 --- a/src/test/regress/expected/generated_identity.out +++ b/src/test/regress/expected/generated_identity.out @@ -345,8 +345,12 @@ Indexes: "color_color_id_key" UNIQUE CONSTRAINT, btree (color_id) INSERT INTO color(color_name) VALUES ('Red'); +ALTER SEQUENCE color_color_id_seq RESTART WITH 1000; +ERROR: Altering a distributed sequence is currently not supported. \c - postgres - :master_port SET search_path TO generated_identities; SET client_min_messages to ERROR; +ALTER SEQUENCE color_color_id_seq RESTART WITH 1000; +ERROR: Altering a distributed sequence is currently not supported. DROP SCHEMA generated_identities CASCADE; DROP USER identity_test_user;