1
0
mirror of https://github.com/MariaDB/server.git synced 2025-07-29 05:21:33 +03:00

BUG#20821 (INSERT DELAYED failes to write some rows to binlog):

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.
This commit is contained in:
unknown
2006-07-08 06:15:24 +02:00
parent 9d14c76427
commit a92e1c4aea
3 changed files with 8 additions and 4 deletions

View File

@ -9,8 +9,8 @@ USE mysqlslap;
CREATE TABLE t1 (id INT, name VARCHAR(64));
SELECT COUNT(*) FROM mysqlslap.t1;
COUNT(*)
20000
5000
SELECT COUNT(*) FROM mysqlslap.t1;
COUNT(*)
20000
5000
DROP SCHEMA IF EXISTS mysqlslap;