summaryrefslogtreecommitdiff
path: root/mysql-test/suite/innodb/r/auto_increment_dup,skip-log-bin.rdiff
diff options
context:
space:
mode:
Diffstat (limited to 'mysql-test/suite/innodb/r/auto_increment_dup,skip-log-bin.rdiff')
-rw-r--r--mysql-test/suite/innodb/r/auto_increment_dup,skip-log-bin.rdiff51
1 files changed, 0 insertions, 51 deletions
diff --git a/mysql-test/suite/innodb/r/auto_increment_dup,skip-log-bin.rdiff b/mysql-test/suite/innodb/r/auto_increment_dup,skip-log-bin.rdiff
deleted file mode 100644
index 7b4ec54eed8..00000000000
--- a/mysql-test/suite/innodb/r/auto_increment_dup,skip-log-bin.rdiff
+++ /dev/null
@@ -1,51 +0,0 @@
---- auto_increment_dup.result
-+++ auto_increment_dup,skip-log-bin.reject
-@@ -89,13 +89,14 @@
- SET DEBUG_SYNC='execute_command_after_close_tables SIGNAL continue';
- affected rows: 0
- INSERT INTO t1(k) VALUES (2), (4), (5) ON DUPLICATE KEY UPDATE c='2';
--ERROR HY000: Lock wait timeout exceeded; try restarting transaction
-+affected rows: 3
-+info: Records: 3 Duplicates: 0 Warnings: 0
- connection con1;
- #
- # 2 duplicates
- #
--affected rows: 3
--info: Records: 3 Duplicates: 0 Warnings: 0
-+affected rows: 4
-+info: Records: 3 Duplicates: 1 Warnings: 0
- connection default;
- #
- # 3 rows
-@@ -103,19 +104,21 @@
- SELECT * FROM t1 order by k;
- id k c
- 1 1 NULL
--2 2 NULL
--3 3 NULL
--affected rows: 3
-+4 2 1
-+2 3 NULL
-+5 4 NULL
-+6 5 NULL
-+affected rows: 5
- INSERT INTO t1(k) VALUES (2), (4), (5) ON DUPLICATE KEY UPDATE c='2';
--affected rows: 4
--info: Records: 3 Duplicates: 1 Warnings: 0
-+affected rows: 6
-+info: Records: 3 Duplicates: 3 Warnings: 0
- SELECT * FROM t1 order by k;
- id k c
- 1 1 NULL
--2 2 2
--3 3 NULL
--7 4 NULL
--8 5 NULL
-+4 2 2
-+2 3 NULL
-+5 4 2
-+6 5 2
- affected rows: 5
- disconnect con1;
- disconnect con2;