diff options
author | unknown <brian@zim.(none)> | 2005-12-25 02:03:53 -0800 |
---|---|---|
committer | unknown <brian@zim.(none)> | 2005-12-25 02:03:53 -0800 |
commit | 4348dc672fa4a5690bd9adb954fe5988b7593dd9 (patch) | |
tree | 75ecbdd0a94e874a8f5b289dcfcc25ea24e7de03 /client/client_priv.h | |
parent | a6ef1dc3a8e173e909d325d2067ebfbdae2e6006 (diff) | |
download | mariadb-git-4348dc672fa4a5690bd9adb954fe5988b7593dd9.tar.gz |
New option to run multiple engines through the same test:
--engine="myisam,archive"
--number-of-rows has been removed for the time being and replaced with
option to allow you to just repeat multiple time all of the inserts you specifed with data. When number-of-rows-returns it will be instead used for averaging rows while growing concurrency.
Returned stats now has accurent row and query counts since it includes a multiple for the rows and queries added.
Parser is now a touch smarter and understands end of file issues if you have a delimiter at the end of the file.
client/client_priv.h:
New options
client/mysqlslap.c:
Modifications for doing repeated tests.
mysql-test/r/mysqlslap.result:
New result file
mysql-test/t/mysqlslap.test:
Changes in tests to make sure concurrency failures would not occur.
Diffstat (limited to 'client/client_priv.h')
-rw-r--r-- | client/client_priv.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/client/client_priv.h b/client/client_priv.h index 9d27168e412..6380b37230c 100644 --- a/client/client_priv.h +++ b/client/client_priv.h @@ -51,6 +51,7 @@ enum options_client #endif OPT_TRIGGERS, OPT_MYSQL_ONLY_PRINT, + OPT_MYSQL_REPEAT_DATA, OPT_MYSQL_REPEAT_QUERY, OPT_MYSQL_PRESERVE_SCHEMA_ENTER, OPT_MYSQL_PRESERVE_SCHEMA_EXIT, OPT_IGNORE_TABLE,OPT_INSERT_IGNORE,OPT_SHOW_WARNINGS,OPT_DROP_DATABASE, OPT_TZ_UTC, OPT_AUTO_CLOSE, OPT_CREATE_SLAP_SCHEMA, |