PT-116 Added --[no]use-insert-ignore

This commit is contained in:
Carlos Salguero
2017-04-20 15:31:33 -03:00
parent 40d2fe969a
commit 4224fc7abf
3 changed files with 202 additions and 10 deletions

View File

@@ -0,0 +1,10 @@
CREATE SCHEMA IF NOT EXISTS test;
DROP TABLE IF EXISTS test.t1;
CREATE TABLE test.t1 (
id TINYINT UNSIGNED AUTO_INCREMENT PRIMARY KEY,
notunique VARCHAR(200) NOT NULL
);
INSERT INTO test.t1(notunique) VALUES('test01'),('test01'),('test02');