summaryrefslogtreecommitdiff
path: root/sql-bench/server-cfg.sh
diff options
context:
space:
mode:
authormonty@donna.mysql.com <>2000-12-24 15:19:00 +0200
committermonty@donna.mysql.com <>2000-12-24 15:19:00 +0200
commitb590fa2567f3a4c1f0055618fb4d06e1af7ae85b (patch)
tree899e99579647137316d4fbc999750fb989b1cf2e /sql-bench/server-cfg.sh
parent11f7fd10f080461e34114869daf853ba714ff03c (diff)
downloadmariadb-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.sh7
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;
}