2012-11-12 22:31:30 +09:00
|
|
|
# Test for bug #14676111: WRONG PAGE_LEVEL WRITTEN FOR UPPER THAN FATHER PAGE AT BTR_LIFT_PAGE_UP()
|
|
|
|
|
|
|
|
-- source include/have_innodb.inc
|
|
|
|
-- source include/have_debug.inc
|
2017-03-24 18:01:56 +02:00
|
|
|
-- source include/count_sessions.inc
|
2012-11-12 22:31:30 +09:00
|
|
|
|
|
|
|
set @old_innodb_limit_optimistic_insert_debug = @@innodb_limit_optimistic_insert_debug;
|
|
|
|
|
|
|
|
CREATE TABLE t1 (a int not null primary key) engine=InnoDB;
|
|
|
|
|
|
|
|
#
|
|
|
|
# make 4 leveled straight tree
|
|
|
|
#
|
|
|
|
set global innodb_limit_optimistic_insert_debug = 2;
|
|
|
|
insert into t1 values (1);
|
2017-03-24 18:01:56 +02:00
|
|
|
--connect (con5,localhost,root)
|
|
|
|
begin;
|
2012-11-12 22:31:30 +09:00
|
|
|
insert into t1 values (5);
|
|
|
|
#current tree form
|
|
|
|
# (1, 5)
|
|
|
|
|
2017-03-24 18:01:56 +02:00
|
|
|
--connect (con4,localhost,root)
|
|
|
|
begin;
|
2012-11-12 22:31:30 +09:00
|
|
|
insert into t1 values (4);
|
|
|
|
#records in a page is limited to 2 artificially. root rise occurs
|
|
|
|
#current tree form
|
|
|
|
# (1, 5)
|
|
|
|
#(1, 4) (5)
|
|
|
|
|
2017-03-24 18:01:56 +02:00
|
|
|
--connection default
|
2012-11-12 22:31:30 +09:00
|
|
|
insert into t1 values (3);
|
|
|
|
#current tree form
|
|
|
|
# (1, 5)
|
|
|
|
# (1, 4) (5)
|
|
|
|
#(1, 3) (4) (5)
|
|
|
|
|
2017-03-24 18:01:56 +02:00
|
|
|
--connect (con2,localhost,root)
|
|
|
|
begin;
|
2012-11-12 22:31:30 +09:00
|
|
|
insert into t1 values (2);
|
|
|
|
#current tree form
|
|
|
|
# (1, 5)
|
|
|
|
# (1, 4) (5)
|
|
|
|
# (1, 3) (4) (5)
|
|
|
|
#(1, 2) (3) (4) (5)
|
|
|
|
|
2017-03-24 18:01:56 +02:00
|
|
|
--connection default
|
2012-11-12 22:31:30 +09:00
|
|
|
analyze table t1;
|
|
|
|
select DATA_LENGTH / 16384 from information_schema.TABLES where TABLE_SCHEMA = 'test' and TABLE_NAME = 't1';
|
|
|
|
|
2017-03-24 18:01:56 +02:00
|
|
|
--connection con4
|
|
|
|
rollback;
|
|
|
|
--disconnect con4
|
|
|
|
--connection default
|
|
|
|
|
2012-11-12 22:31:30 +09:00
|
|
|
#deleting 1 record of 2 records don't cause merge artificially.
|
|
|
|
#current tree form
|
|
|
|
# (1, 5)
|
|
|
|
# (1) (5)
|
|
|
|
# (1, 3) (5)
|
|
|
|
#(1, 2) (3) (5)
|
|
|
|
|
|
|
|
analyze table t1;
|
|
|
|
select DATA_LENGTH / 16384 from information_schema.TABLES where TABLE_SCHEMA = 'test' and TABLE_NAME = 't1';
|
|
|
|
|
2017-03-24 18:01:56 +02:00
|
|
|
--connection con5
|
|
|
|
rollback;
|
|
|
|
--disconnect con5
|
|
|
|
--connection default
|
|
|
|
|
2012-11-12 22:31:30 +09:00
|
|
|
#deleting 1 record of 2 records don't cause merge artificially.
|
|
|
|
#current tree form
|
|
|
|
# (1)
|
|
|
|
# (1)
|
|
|
|
# (1, 3) <- lift up this level next, when deleting node ptr
|
|
|
|
#(1, 2) (3) <- merged next
|
|
|
|
|
|
|
|
analyze table t1;
|
|
|
|
select DATA_LENGTH / 16384 from information_schema.TABLES where TABLE_SCHEMA = 'test' and TABLE_NAME = 't1';
|
|
|
|
|
|
|
|
#
|
|
|
|
# cause merge at level 0
|
|
|
|
#
|
|
|
|
|
|
|
|
#disable the artificial limitation of records in a page
|
|
|
|
set global innodb_limit_optimistic_insert_debug = 10000;
|
2017-03-24 18:01:56 +02:00
|
|
|
--connection con2
|
|
|
|
rollback;
|
|
|
|
--disconnect con2
|
|
|
|
--connection default
|
|
|
|
|
2012-11-12 22:31:30 +09:00
|
|
|
#merge page occurs. and lift up occurs.
|
|
|
|
#current tree form
|
|
|
|
# (1)
|
|
|
|
# (1)
|
|
|
|
# (1, 3)
|
|
|
|
|
|
|
|
analyze table t1;
|
|
|
|
select DATA_LENGTH / 16384 from information_schema.TABLES where TABLE_SCHEMA = 'test' and TABLE_NAME = 't1';
|
|
|
|
|
2017-03-24 18:01:56 +02:00
|
|
|
begin;
|
2012-11-12 22:31:30 +09:00
|
|
|
insert into t1 values (2);
|
|
|
|
#current tree form
|
|
|
|
# (1)
|
|
|
|
# (1) <- lift up this level next, because it is not root
|
|
|
|
# (1, 2, 3)
|
2017-03-24 18:01:56 +02:00
|
|
|
rollback;
|
2012-11-12 22:31:30 +09:00
|
|
|
|
|
|
|
#current tree form
|
|
|
|
# (1)
|
|
|
|
# (1, 3)
|
|
|
|
|
|
|
|
analyze table t1;
|
|
|
|
select DATA_LENGTH / 16384 from information_schema.TABLES where TABLE_SCHEMA = 'test' and TABLE_NAME = 't1';
|
|
|
|
|
2017-03-24 18:01:56 +02:00
|
|
|
begin;
|
2012-11-12 22:31:30 +09:00
|
|
|
insert into t1 values (2);
|
|
|
|
#current tree form
|
|
|
|
# (1)
|
|
|
|
# (1, 2, 3) <- lift up this level next, because the father is root
|
2017-03-24 18:01:56 +02:00
|
|
|
rollback;
|
2012-11-12 22:31:30 +09:00
|
|
|
#current tree form
|
|
|
|
# (1, 3)
|
|
|
|
|
|
|
|
analyze table t1;
|
|
|
|
select DATA_LENGTH / 16384 from information_schema.TABLES where TABLE_SCHEMA = 'test' and TABLE_NAME = 't1';
|
|
|
|
|
|
|
|
drop table t1;
|
|
|
|
|
|
|
|
set global innodb_limit_optimistic_insert_debug = @old_innodb_limit_optimistic_insert_debug;
|
2017-03-24 18:01:56 +02:00
|
|
|
-- source include/wait_until_count_sessions.inc
|