diff options
author | unknown <patg@krsna.patg.net> | 2005-11-29 16:02:21 -0800 |
---|---|---|
committer | unknown <patg@krsna.patg.net> | 2005-11-29 16:02:21 -0800 |
commit | a9d363e698e4bed9b833394606d69b6099102f2d (patch) | |
tree | 55dd1fb53d85a10298fd8cef84bcaa5e90b29008 /mysql-test/r/mysqlslap.result | |
parent | dee85cba32a96c2596936aff63b3c76c7ae8e771 (diff) | |
download | mariadb-git-a9d363e698e4bed9b833394606d69b6099102f2d.tar.gz |
Worklog #2983 Mysqlslap load emulator tool and accompanied test, results
and modifications to mysql-test-run(.pl/.sh)
client/Makefile.am:
Worklog #2983, added mysqlslap to Makefile.am
client/client_priv.h:
Worklog #2983 Added OPT_CREATE_SLAP_SCHEMA
mysql-test/mysql-test-run.pl:
Worklog #2983 Added mysqlslap test binary to test script
mysql-test/mysql-test-run.sh:
Worklog #2983 Added mysqlslap binary def to test script
client/mysqlslap.c:
Worklog #2983 mysqlslap.c, new utility for running load simulation.
mysql-test/r/mysqlslap.result:
Worklog #2983 Mysqlslap test results
mysql-test/t/mysqlslap.test:
Worklog #2983 Mysqlslap test
Diffstat (limited to 'mysql-test/r/mysqlslap.result')
-rw-r--r-- | mysql-test/r/mysqlslap.result | 68 |
1 files changed, 68 insertions, 0 deletions
diff --git a/mysql-test/r/mysqlslap.result b/mysql-test/r/mysqlslap.result new file mode 100644 index 00000000000..08e64e25ef5 --- /dev/null +++ b/mysql-test/r/mysqlslap.result @@ -0,0 +1,68 @@ +/home/patg/mysql-build/mysql-5.1-slap/client/.libs/lt-mysqlslap Ver 0.1 Distrib 5.1.3-alpha, for suse-linux (i686) +Copyright (C) 2005 MySQL AB +This software comes with ABSOLUTELY NO WARRANTY. This is free software, +and you are welcome to modify and redistribute it under the GPL license + +Run a query multiple times against the server + +Usage: /home/patg/mysql-build/mysql-5.1-slap/client/.libs/lt-mysqlslap [OPTIONS] [database [table [column]]] + +Default options are read from the following files in the given order: +/etc/my.cnf ~/.my.cnf +The following groups are read: mysqlslap client +The following options may be given as the first argument: +--print-defaults Print the program argument list and exit +--no-defaults Don't read default options from any options file +--defaults-file=# Only read default options from the given file # +--defaults-extra-file=# Read this file after the global files are read + -a, --auto-generate-sql + Generate SQL where not supplied by file or command line. + -C, --compress Use compression in server/client protocol. + -l, --concurrency-load=# + Number of clients to simulate for data load. + -c, --concurrency=# Number of clients to simulate for query to run. + --create=name File or string to use for create. + -d, --data=name File or string with INSERT to use for populating + table(s). + -#, --debug[=name] Output debug log. Often this is 'd:t:o,filename'. + -F, --delimiter=name + Delimiter to use in SQL statements supplied in file or + command line. + -D, --drop-schema Drop schema if it exists prior to running, and after + running + -e, --engine=name Storage engine to use for creating the table. + -?, --help Display this help and exit. + -h, --host=name Connect to host. + -i, --iterations=# Number of iterations. + -x, --number-char-cols=# + Number of INT columns to create table with if specifying + --sql-generate-sql. + -y, --number-int-cols=# + Number of VARCHAR columns to create table with if + specifying --sql-generate-sql. + -n, --number-rows=# Number of rows to insert when loading data. + -p, --password[=name] + Password to use when connecting to server. If password is + not given it's asked from the tty. + -P, --port=# Port number to use for connection. + --protocol=name The protocol of connection (tcp,socket,pipe,memory). + -A, --skip-create-schema + Don't create a schema, use existing schema. + -L, --skip-data-load + Don't load any data, use existing data set. + -Q, --skip-query Don't run any queries. + -s, --silent Run program in silent mode - no output. + -q, --query=name Query to run or file containing query to run. + -S, --socket=name Socket file to use for connection. + --ssl Enable SSL for connection (automatically enabled with + other flags). Disable with --skip-ssl. + --ssl-key=name X509 key in PEM format (implies --ssl). + --ssl-cert=name X509 cert in PEM format (implies --ssl). + --ssl-ca=name CA file in PEM format (check OpenSSL docs, implies + --ssl). + --ssl-capath=name CA directory (check OpenSSL docs, implies --ssl). + --ssl-cipher=name SSL cipher to use (implies --ssl). + -u, --user=name User for login if not current user. + -v, --verbose More verbose output; You can use this multiple times to + get even more verbose output. + -V, --version Output version information and exit. |