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
` 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. `
The text was updated successfully, but these errors were encountered:
Complex to fix, but we might be able to cook something up.
Sorry, something went wrong.
No branches or pull requests
`
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.
`
The text was updated successfully, but these errors were encountered: