mirror of
https://github.com/MariaDB/server.git
synced 2025-01-30 10:31:54 +01:00
another cleanup patch for removing tables before tests start.
mysql-test/extra/binlog_tests/insert_select-binlog.test: Fixing isssues with preexisting tables mysql-test/r/binlog_stm_insert_select.result: new results
This commit is contained in:
parent
594ba86bc5
commit
f78d0531d2
2 changed files with 5 additions and 0 deletions
|
@ -1,6 +1,10 @@
|
|||
# Embedded server doesn't support binlog
|
||||
-- source include/not_embedded.inc
|
||||
|
||||
--disable_warnings
|
||||
drop table if exists t1,t2;
|
||||
--enable_warnings
|
||||
|
||||
# Check if a partly-completed INSERT SELECT in a MyISAM table goes into the
|
||||
# binlog
|
||||
|
||||
|
|
|
@ -1,3 +1,4 @@
|
|||
drop table if exists t1,t2;
|
||||
create table t1(a int, unique(a));
|
||||
insert into t1 values(2);
|
||||
create table t2(a int);
|
||||
|
|
Loading…
Add table
Reference in a new issue