We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
mixed_objects
ALTER TABLE foo ADD COLUMN bar_id SERIAL generates an unhandled deployment.
ALTER TABLE foo ADD COLUMN bar_id SERIAL
Here is why: here is what it shows:
id | set_name | pid | txid | classid | objid | objsubid | command_tag | object_type | schema_name | object_identity | in_extension | set_config_id ----+-----------------------+-------+-----------+---------+----------+----------+-----------------+-------------+-------------+-----------------------------------------------------------+--------------+--------------- 1 | insert_update_special | 10795 | 960613833 | 1259 | 87397177 | 0 | CREATE SEQUENCE | sequence | foo | foo.bla_payments_bla_payment_id_seq | f | 1 2 | insert_update_special | 10795 | 960613833 | 1259 | 26311794 | 0 | ALTER TABLE | table | foo | foo.bla_payments | f | 1 3 | insert_update_special | 10795 | 960613833 | 1259 | 87397177 | 0 | ALTER SEQUENCE | sequence | foo | foo.bla_payments_bla_payment_id_seq | f | 1 (3 rows)
EDIT: This perhaps cannot be supported with replication, because the serial value generated on the subscriber would be different.
There is only 2 ways I see to handle this:
The resolution to this may need to be for documentation only.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
ALTER TABLE foo ADD COLUMN bar_id SERIAL
generates an unhandled deployment.Here is why: here is what it shows:
EDIT: This perhaps cannot be supported with replication, because the serial value generated on the subscriber would be different.
There is only 2 ways I see to handle this:
The resolution to this may need to be for documentation only.
The text was updated successfully, but these errors were encountered: