Description
PG
postgres=# create table err(k int primary key, v int);
CREATE TABLE
postgres=# insert into err values(1,1);
INSERT 0 1
postgres=# insert into err values(1,1);
ERROR: duplicate key value violates unique constraint "err_pkey"
DETAIL: Key (k)=(1) already exists.
YB
yugabyte=# create table err(k int primary key, v int);
CREATE TABLE
yugabyte=# insert into err values(1,1);
INSERT 0 1
yugabyte=# insert into err values(1,1);
ERROR: duplicate key value violates unique constraint "err_pkey"
Additional Info:
DETAIL: Key (k)=(1) already exists.
The above info is emitted by PG whereas YB doesn't.
Issue Type
kind/bug
Warning: Please confirm that this issue does not contain any sensitive information
Description
PG
YB
Additional Info:
DETAIL: Key (k)=(1) already exists.
The above info is emitted by PG whereas YB doesn't.
Issue Type
kind/bug
Warning: Please confirm that this issue does not contain any sensitive information