diff options
author | monty@donna.mysql.com <> | 2000-12-24 15:19:00 +0200 |
---|---|---|
committer | monty@donna.mysql.com <> | 2000-12-24 15:19:00 +0200 |
commit | b590fa2567f3a4c1f0055618fb4d06e1af7ae85b (patch) | |
tree | 899e99579647137316d4fbc999750fb989b1cf2e /sql-bench/server-cfg.sh | |
parent | 11f7fd10f080461e34114869daf853ba714ff03c (diff) | |
download | mariadb-git-b590fa2567f3a4c1f0055618fb4d06e1af7ae85b.tar.gz |
New benchmark test
Fixed bug in REPLACE with BDB tables
Prepare for write lock on read for BDB
Inform the handler when we want to use IGNORE / REPLACE
New manual pages
Diffstat (limited to 'sql-bench/server-cfg.sh')
-rw-r--r-- | sql-bench/server-cfg.sh | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/sql-bench/server-cfg.sh b/sql-bench/server-cfg.sh index 02dbb5dd712..6e27e84a08d 100644 --- a/sql-bench/server-cfg.sh +++ b/sql-bench/server-cfg.sh @@ -188,6 +188,13 @@ sub new $smds{'q16'} = 'a'; $smds{'q17'} = 'c'; + # Some fixes that depends on the environment + if (defined($main::opt_create_options) && + $main::opt_create_options =~ /type=heap/i) + { + $limits{'working_blobs'} = 0; # HEAP tables can't handle BLOB's + } + return $self; } |