1
0
mirror of https://github.com/MariaDB/server.git synced 2025-07-30 16:24:05 +03:00

memory-limited tree

bulk inserts optimization: caching keys in binary tree
This commit is contained in:
serg@serg.mysql.com
2001-07-02 21:18:57 +02:00
parent 3c7cc2285c
commit 15b6738474
24 changed files with 262 additions and 97 deletions

View File

@ -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());