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
This commit is contained in:
monty@donna.mysql.com 2000-12-24 15:19:00 +02:00
commit b590fa2567
46 changed files with 2005 additions and 254 deletions

View file

@ -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;
}