mirror of
https://github.com/MariaDB/server.git
synced 2025-02-05 05:12:17 +01:00
4c16ec3e77
In any test that uses wait_all_purged.inc, ensure that InnoDB tables
will be created without persistent statistics.
This is a follow-up to commit cd04673a17
after a similar failure was observed in the innodb_zip.blob test.
64 lines
1.9 KiB
Text
64 lines
1.9 KiB
Text
# WL#6745 InnoDB R-tree support
|
|
# This test case will test R-tree split.
|
|
|
|
# Not supported in embedded
|
|
--source include/not_embedded.inc
|
|
|
|
--source include/innodb_page_size_small.inc
|
|
--source include/have_debug.inc
|
|
--source include/big_test.inc
|
|
# Valgrind takes too much time on PB2 even in the --big-test runs.
|
|
--source include/not_valgrind.inc
|
|
|
|
create table t1 (c1 int, c2 geometry not null, spatial index (c2))engine=innodb ROW_FORMAT=COMPRESSED STATS_PERSISTENT=0;
|
|
|
|
# Insert enough values to let R-tree split.
|
|
lock tables t1 write;
|
|
start transaction;
|
|
insert into t1 values(1, Point(1,1));
|
|
insert into t1 values(2, Point(2,2));
|
|
insert into t1 values(3, Point(3,3));
|
|
insert into t1 values(4, Point(4,4));
|
|
insert into t1 values(5, Point(5,5));
|
|
insert into t1 values(6, Point(6,6));
|
|
insert into t1 values(7, Point(7,7));
|
|
insert into t1 values(8, Point(8,8));
|
|
insert into t1 values(9, Point(9,9));
|
|
|
|
insert into t1 select * from t1;
|
|
insert into t1 select * from t1;
|
|
insert into t1 select * from t1;
|
|
insert into t1 select * from t1;
|
|
insert into t1 select * from t1;
|
|
insert into t1 select * from t1;
|
|
insert into t1 select * from t1;
|
|
insert into t1 select * from t1;
|
|
insert into t1 select * from t1;
|
|
insert into t1 select * from t1;
|
|
commit;
|
|
unlock tables;
|
|
start transaction;
|
|
insert into t1 select * from t1;
|
|
select count(*) from t1;
|
|
rollback;
|
|
|
|
check table t1;
|
|
|
|
select count(*) from t1;
|
|
|
|
set @g1 = ST_GeomFromText('Polygon((0 0,0 100,100 100,100 0,0 0))');
|
|
select count(*) from t1 where MBRWithin(t1.c2, @g1);
|
|
|
|
set @g1 = ST_GeomFromText('Polygon((10 10,10 800,800 800,800 10,10 10))');
|
|
select count(*) from t1 where MBRWithin(t1.c2, @g1);
|
|
|
|
SET @saved_dbug = @@SESSION.debug_dbug;
|
|
SET DEBUG='+d,page_copy_rec_list_start_compress_fail';
|
|
delete from t1;
|
|
select count(*) from t1 where MBRWithin(t1.c2, @g1);
|
|
SET debug_dbug = @saved_dbug;
|
|
|
|
--source ../../innodb/include/wait_all_purged.inc
|
|
|
|
# Clean up.
|
|
drop table t1;
|