mirror of
https://github.com/MariaDB/server.git
synced 2025-01-19 05:22:25 +01:00
a92e1c4aea
Fixing typo and potential memory problem. Reducing number of concurrent mysqlslap threads since tests fail in pushbuild due to too many threads. mysql-test/r/rpl_insert.result: Result change. mysql-test/t/rpl_insert.test: Reducing number of threads since it doesn't pass pushbuild. sql/sql_insert.cc: Fixing typo and potential memory problem.
16 lines
379 B
Text
16 lines
379 B
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;
|
|
CREATE SCHEMA IF NOT EXISTS mysqlslap;
|
|
USE mysqlslap;
|
|
CREATE TABLE t1 (id INT, name VARCHAR(64));
|
|
SELECT COUNT(*) FROM mysqlslap.t1;
|
|
COUNT(*)
|
|
5000
|
|
SELECT COUNT(*) FROM mysqlslap.t1;
|
|
COUNT(*)
|
|
5000
|
|
DROP SCHEMA IF EXISTS mysqlslap;
|