diff options
author | monty@donna.mysql.com <> | 2000-08-15 20:09:37 +0300 |
---|---|---|
committer | monty@donna.mysql.com <> | 2000-08-15 20:09:37 +0300 |
commit | ea013c2152301e459504451efdb17f4c9bb30877 (patch) | |
tree | 5f72e7444fbc3c8d944a66b54b26550a04e4f0be /sql-bench | |
parent | 807460bbceceec25bf97352bc5e232c3e766d70f (diff) | |
download | mariadb-git-ea013c2152301e459504451efdb17f4c9bb30877.tar.gz |
Fixed for Ia64 + delayed key creation + a lot of small bug fixes
Diffstat (limited to 'sql-bench')
-rwxr-xr-x | sql-bench/bench-init.pl.sh | 5 | ||||
-rwxr-xr-x | sql-bench/server-cfg.sh | 18 |
2 files changed, 14 insertions, 9 deletions
diff --git a/sql-bench/bench-init.pl.sh b/sql-bench/bench-init.pl.sh index aca915f2914..b6552ccb48f 100755 --- a/sql-bench/bench-init.pl.sh +++ b/sql-bench/bench-init.pl.sh @@ -395,6 +395,11 @@ All benchmarks takes the following options: extra information that 'uname -a' doesn\'t give and if the database was stared with some specific, non default, options. +--cmp=server[,server...] + Run the test with limits from the given servers. If you run all servers + with the same --cmp, you will get a test that is comparable between + the different sql servers. + --database (Default $opt_database) In which database the test tables are created. diff --git a/sql-bench/server-cfg.sh b/sql-bench/server-cfg.sh index f4d16b908b7..a074efda4d9 100755 --- a/sql-bench/server-cfg.sh +++ b/sql-bench/server-cfg.sh @@ -535,23 +535,23 @@ sub new $limits{'group_functions'} = 1; $limits{'group_distinct_functions'}= 1; # Have count(distinct) $limits{'having_with_alias'} = 0; - $limits{'having_with_group'} = 0; + $limits{'having_with_group'} = 1; $limits{'left_outer_join'} = 0; $limits{'like_with_column'} = 1; $limits{'lock_tables'} = 0; # in ATIS gives this a problem - $limits{'max_column_name'} = 32; # Is this true - $limits{'max_columns'} = 300; # 500 crashes pg 6.3 - $limits{'max_tables'} = 65000; # Should be big enough - $limits{'max_conditions'} = 9; # This makes Pg real slow - $limits{'max_index'} = 7; # Is this true ? - $limits{'max_index_parts'} = 16; # Is this true ? - $limits{'max_text_size'} = 7000; # 8000 crashes pg 6.3 $limits{'multi_drop'} = 1; $limits{'order_by_position'} = 1; - $limits{'query_size'} = 8191; $limits{'select_without_from'}= 1; $limits{'subqueries'} = 1; $limits{'table_wildcard'} = 1; + $limits{'max_column_name'} = 32; # Is this true + $limits{'max_columns'} = 1000; # 500 crashes pg 6.3 + $limits{'max_tables'} = 65000; # Should be big enough + $limits{'max_conditions'} = 30; # This makes Pg real slow + $limits{'max_index'} = 64; # Is this true ? + $limits{'max_index_parts'} = 16; # Is this true ? + $limits{'max_text_size'} = 7000; # 8000 crashes pg 6.3 + $limits{'query_size'} = 8191; # the different cases per query ... $smds{'q1'} = 'b'; # with time |