mirror of
https://github.com/MariaDB/server.git
synced 2025-01-22 14:54:20 +01:00
8661497e9b
- Update mysql-test-run.pl to collect tests from several suites - Group test into suites - Add suite.opt file
48 lines
1.1 KiB
Text
48 lines
1.1 KiB
Text
stop slave;
|
|
drop table if exists t1,t2,t3,t4,t5,t6,t7,t8,t9;
|
|
reset master;
|
|
reset slave;
|
|
drop table if exists t1,t2,t3,t4,t5,t6,t7,t8,t9;
|
|
start slave;
|
|
set @old_global_binlog_format = @@global.binlog_format;
|
|
set @@global.binlog_format = row;
|
|
CREATE SCHEMA IF NOT EXISTS mysqlslap;
|
|
USE mysqlslap;
|
|
select @@global.binlog_format;
|
|
@@global.binlog_format
|
|
ROW
|
|
CREATE TABLE t1 (id INT primary key auto_increment, name VARCHAR(64));
|
|
FLUSH TABLE t1;
|
|
SELECT COUNT(*) FROM t1;
|
|
COUNT(*)
|
|
5000
|
|
use mysqlslap;
|
|
SELECT COUNT(*) FROM t1;
|
|
COUNT(*)
|
|
5000
|
|
truncate table t1;
|
|
insert delayed into t1 values(10, "my name");
|
|
insert delayed into t1 values(10, "is Bond"), (20, "James Bond");
|
|
flush table t1;
|
|
select * from t1;
|
|
id name
|
|
10 my name
|
|
20 James Bond
|
|
select * from t1;
|
|
id name
|
|
10 my name
|
|
20 James Bond
|
|
delete from t1 where id!=10;
|
|
insert delayed into t1 values(20, "is Bond"), (10, "James Bond");
|
|
flush table t1;
|
|
select * from t1;
|
|
id name
|
|
10 my name
|
|
20 is Bond
|
|
select * from t1;
|
|
id name
|
|
10 my name
|
|
20 is Bond
|
|
USE test;
|
|
DROP SCHEMA mysqlslap;
|
|
set @@global.binlog_format = @old_global_binlog_format;
|