37 lines
922 B
Plaintext
37 lines
922 B
Plaintext
# stress tests: blobs=no, crash=yes, compress=no
|
|
|
|
# Don't test this under valgrind, memory leaks will occur
|
|
--source include/not_valgrind.inc
|
|
--source include/master-slave.inc
|
|
--source include/big_test.inc
|
|
|
|
let $MYSQL_BASEDIR = `SELECT @@BASEDIR`;
|
|
|
|
--disable_warnings
|
|
DROP TABLE IF EXISTS t1;
|
|
--enable_warnings
|
|
|
|
# create the actual table
|
|
CREATE TABLE t1(id INT AUTO_INCREMENT PRIMARY KEY,
|
|
msg_prefix VARCHAR(255),
|
|
msg VARCHAR(255),
|
|
msg_length int,
|
|
msg_checksum varchar(128),
|
|
KEY msg_i(msg_prefix))
|
|
ENGINE=XENGINE;
|
|
|
|
let $use_blob=0;
|
|
let $do_crash=1;
|
|
let $do_compress=0;
|
|
|
|
--let $num_crashes = 2
|
|
--let $num_workers = 20
|
|
--let $num_transactions = 0
|
|
--let $kill_db_after = 600
|
|
--let $num_records = 10000
|
|
--let $max_rows = 200000
|
|
|
|
--source suite/xengine_stress/include/xengine_stress.inc
|
|
|
|
--source suite/xengine/include/check_xengine_log_error.inc
|