mirror of
https://github.com/MariaDB/server.git
synced 2025-08-01 03:47:19 +03:00
memory-limited tree
bulk inserts optimization: caching keys in binary tree
This commit is contained in:
@ -744,7 +744,7 @@ run_testcase ()
|
||||
$ECHO "Resuming Tests"
|
||||
$ECHO ""
|
||||
else
|
||||
pass_inc
|
||||
# pass_inc
|
||||
$ECHO "$RES$RES_SPACE [ skipped ]"
|
||||
fi
|
||||
fi
|
||||
|
@ -83,7 +83,8 @@ create table t1 (n1 int not null, n2 int, n3 int, n4 float,
|
||||
key (n3, n4, n1, n2),
|
||||
key (n4, n1, n2, n3) );
|
||||
alter table t1 disable keys;
|
||||
let $1=10000;
|
||||
#let $1=10000;
|
||||
let $1=10;
|
||||
while ($1)
|
||||
{
|
||||
eval insert into t1 values($1,RAND()*1000,RAND()*1000,RAND());
|
||||
|
Reference in New Issue
Block a user