Skip to content
New issue

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

Serial values (sequences) are not updated in the destination #34

Open
RobertBlok opened this issue Dec 28, 2022 · 1 comment
Open

Serial values (sequences) are not updated in the destination #34

RobertBlok opened this issue Dec 28, 2022 · 1 comment
Labels
enhancement New feature or request
Milestone

Comments

@RobertBlok
Copy link

RobertBlok commented Dec 28, 2022

`
src=# create table dummy( id serial primary key, name varchar( 100 ) not null );
CREATE TABLE
src=# insert into dummy( name ) values ( 'Test' );
INSERT 0 1

dest=# select * from dummy;
id | name
----+------
1 | Test
(1 row)

dest=# insert into dummy( name ) values ( 'Broken' );
ERROR: duplicate key value violates unique constraint "dummy_pkey"
DETAIL: Key (id)=(1) already exists.
`

@sebasmannem sebasmannem added the enhancement New feature or request label Jan 25, 2023
@sebasmannem
Copy link
Contributor

Complex to fix, but we might be able to cook something up.

@sebasmannem sebasmannem added this to the Later milestone Jan 25, 2023
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
enhancement New feature or request
Projects
None yet
Development

No branches or pull requests

2 participants