diff --git a/src/test/regress/expected/generated_identity_0.out b/src/test/regress/expected/generated_identity_0.out index 87e831eea..1729f91b8 100644 --- a/src/test/regress/expected/generated_identity_0.out +++ b/src/test/regress/expected/generated_identity_0.out @@ -21,9 +21,11 @@ CREATE TABLE smallint_identity_column ( a smallint GENERATED BY DEFAULT AS IDENTITY ); SELECT create_distributed_table('smallint_identity_column', 'a'); -ERROR: cannot complete operation on a table with smallint/int identity column +ERROR: cannot complete operation on generated_identities.smallint_identity_column with smallint/int identity column +HINT: Use bigint identity column instead. SELECT create_distributed_table_concurrently('smallint_identity_column', 'a'); -ERROR: cannot complete operation on a table with smallint/int identity column +ERROR: cannot complete operation on generated_identities.smallint_identity_column with smallint/int identity column +HINT: Use bigint identity column instead. SELECT create_reference_table('smallint_identity_column'); ERROR: cannot complete operation on a table with identity column SELECT citus_add_local_table_to_metadata('smallint_identity_column'); @@ -38,9 +40,11 @@ CREATE TABLE int_identity_column ( a int GENERATED BY DEFAULT AS IDENTITY ); SELECT create_distributed_table('int_identity_column', 'a'); -ERROR: cannot complete operation on a table with smallint/int identity column +ERROR: cannot complete operation on generated_identities.int_identity_column with smallint/int identity column +HINT: Use bigint identity column instead. SELECT create_distributed_table_concurrently('int_identity_column', 'a'); -ERROR: cannot complete operation on a table with smallint/int identity column +ERROR: cannot complete operation on generated_identities.int_identity_column with smallint/int identity column +HINT: Use bigint identity column instead. SELECT create_reference_table('int_identity_column'); ERROR: cannot complete operation on a table with identity column SELECT citus_add_local_table_to_metadata('int_identity_column'); @@ -407,4 +411,4 @@ UPDATE color SET color_id = 1; ERROR: column "color_id" can only be updated to DEFAULT DETAIL: Column "color_id" is an identity column defined as GENERATED ALWAYS. DROP SCHEMA generated_identities CASCADE; -DROP USER identity_test_user; \ No newline at end of file +DROP USER identity_test_user;