Bug #21072 Duplicate key error in NDB references wrong key: Added new...

 Bug #21072  Duplicate key error in NDB references wrong key: Added new printout for duplicate key error when key is unknown
parent 18d2e733
......@@ -389,9 +389,9 @@ INSERT INTO t8 VALUES (99,99,99);
INSERT INTO t8 VALUES (99,22,33);
ERROR 23000: Duplicate entry '99' for key 'PRIMARY'
INSERT INTO t8 VALUES (11,99,33);
ERROR 23000: Duplicate entry '11' for key 'PRIMARY'
ERROR 23000: Duplicate entry '' for key '*UNKNOWN*'
INSERT INTO t8 VALUES (11,22,99);
ERROR 23000: Duplicate entry '11' for key 'PRIMARY'
ERROR 23000: Duplicate entry '' for key '*UNKNOWN*'
SELECT * FROM t8 ORDER BY a;
a b c
99 99 99
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment