64
64
set global keycache1.key_buffer_size=1024*1024;
67
create table t2 (p int primary key, i int, a char(10), key k1(i), key k2(a));
67
create table t2 (p int primary key, i int, a char(10), key k1(i), key k2(a)) ENGINE=myisam;
69
69
show status like 'key_blocks_used';
71
71
# Following results differs on 64 and 32 bit systems because of different
72
72
# pointer sizes, which takes up different amount of space in key cache
75
75
show status like 'key_blocks_unused';
77
77
insert into t1 values (1, 'qqqq'), (11, 'yyyy');