mirror of
https://github.com/MariaDB/server.git
synced 2026-04-29 19:55:32 +02:00
Fixed bug in 'drop table'
Portability fixes
This commit is contained in:
parent
af297a21c3
commit
08a2c58ed1
53 changed files with 811 additions and 301 deletions
|
|
@ -130,7 +130,7 @@ else
|
|||
$query="insert into bench1 (id,id2,id3,dummy1) values ";
|
||||
}
|
||||
|
||||
if (($opt_fast || $opt_fast_insert) && $limits->{'multi_value_insert'})
|
||||
if (($opt_fast || $opt_fast_insert) && $limits->{'insert_multi_value'})
|
||||
{
|
||||
$query_size=$server->{'limits'}->{'query_size'};
|
||||
|
||||
|
|
@ -1177,7 +1177,7 @@ if ($server->small_rollback_segment())
|
|||
|
||||
$loop_time=new Benchmark;
|
||||
$fields=$#fields;
|
||||
if (($opt_fast || $opt_fast_insert) && $limits->{'multi_value_insert'})
|
||||
if (($opt_fast || $opt_fast_insert) && $limits->{'insert_multi_value'})
|
||||
{
|
||||
$query_size=$server->{'limits'}->{'query_size'};
|
||||
$query="insert into bench1 values ";
|
||||
|
|
@ -1331,7 +1331,7 @@ if ($opt_fast && defined($server->{vacuum}))
|
|||
# Test multi value inserts if the server supports it
|
||||
#
|
||||
|
||||
if ($limits->{'multi_value_insert'})
|
||||
if ($limits->{'insert_multi_value'})
|
||||
{
|
||||
$query_size=$limits->{'query_size'}; # Same limit for all databases
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue