diff options
author | unknown <monty@hundin.mysql.fi> | 2001-12-18 05:34:00 +0200 |
---|---|---|
committer | unknown <monty@hundin.mysql.fi> | 2001-12-18 05:34:00 +0200 |
commit | 19b15bfe6de38afdb34563f27e7f10167bd97033 (patch) | |
tree | fd9b8b5be51e148f724af20f6edf3f0a36ba06a3 /sql-bench/bench-init.pl.sh | |
parent | 1c7328c84f96108a4dbfa49013c7779de2c65613 (diff) | |
download | mariadb-git-19b15bfe6de38afdb34563f27e7f10167bd97033.tar.gz |
Updated benchmarks
Portability fixes.
Fixed bug in mysqlbinlog when detecting binary log version
client/mysqlbinlog.cc:
Fixed bug when detecting binary log version
configure.in:
Portability fix for HPUX
mysql-test/mysql-test-run.sh:
Portability fix
sql-bench/bench-init.pl.sh:
Updated benchmarks
sql-bench/run-all-tests.sh:
Updated benchmarks
sql-bench/server-cfg.sh:
Updated benchmarks
sql-bench/test-ATIS.sh:
Updated benchmarks
sql-bench/test-connect.sh:
Updated benchmarks
Diffstat (limited to 'sql-bench/bench-init.pl.sh')
-rw-r--r-- | sql-bench/bench-init.pl.sh | 13 |
1 files changed, 11 insertions, 2 deletions
diff --git a/sql-bench/bench-init.pl.sh b/sql-bench/bench-init.pl.sh index 17da59429f6..4e7e1c29504 100644 --- a/sql-bench/bench-init.pl.sh +++ b/sql-bench/bench-init.pl.sh @@ -44,6 +44,8 @@ $opt_server="mysql"; $opt_dir="output"; $opt_host="localhost";$opt_database="test"; $opt_machine=""; $opt_suffix=""; $opt_create_options=undef; +$opt_optimization="None"; +$opt_hw=""; $opt_threads=5; $opt_time_limit=10*60; # Don't wait more than 10 min for some tests @@ -51,9 +53,9 @@ $opt_time_limit=10*60; # Don't wait more than 10 min for some tests $log_prog_args=join(" ", skip_arguments(\@ARGV,"comments","cmp","server", "user", "host", "database", "password", "use-old-results","skip-test", + "optimization","hw", "machine", "dir", "suffix", "log")); -GetOptions("skip-test=s","comments=s","cmp=s","server=s","user=s","host=s","database=s","password=s","loop-count=i","row-count=i","skip-create","skip-delete","verbose","fast-insert","lock-tables","debug","fast","force","field-count=i","regions=i","groups=i","time-limit=i","log","use-old-results","machine=s","dir=s","suffix=s","help","odbc","small-test","small-tables","small-key-tables","stage=i","threads=i","random","old-headers","die-on-errors","create-options=s","hires","tcpip","silent", -"socket=s") || usage(); +GetOptions("skip-test=s","comments=s","cmp=s","server=s","user=s","host=s","database=s","password=s","loop-count=i","row-count=i","skip-create","skip-delete","verbose","fast-insert","lock-tables","debug","fast","force","field-count=i","regions=i","groups=i","time-limit=i","log","use-old-results","machine=s","dir=s","suffix=s","help","odbc","small-test","small-tables","small-key-tables","stage=i","threads=i","random","old-headers","die-on-errors","create-options=s","hires","tcpip","silent","optimization=s","hw=s","socket=s") || usage(); usage() if ($opt_help); $server=get_server($opt_server,$opt_host,$opt_database,$opt_odbc, @@ -585,6 +587,13 @@ All benchmarks takes the following options: --verbose This is a test specific option that is only used when debugging a test. Print more information about what is going on. + +--optimization='some comments' + Add coments about optimization of DBMS, which was done before the test. + +--hw='some comments' + Add coments about hardware used for this test. + EOF exit(0); } |