1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87
|
create table t1 (c1 int, c2 geometry srid 4326 not null, spatial index (c2))engine=innodb;
insert into t1 values(1, ST_SRID(Point(1,1), 4326));
insert into t1 values(2, ST_SRID(Point(2,2), 4326));
insert into t1 values(3, ST_SRID(Point(3,3), 4326));
insert into t1 values(4, ST_SRID(Point(4,4), 4326));
insert into t1 values(5, ST_SRID(Point(5,5), 4326));
insert into t1 values(6, ST_SRID(Point(6,6), 4326));
insert into t1 values(7, ST_SRID(Point(7,7), 4326));
insert into t1 values(8, ST_SRID(Point(8,8), 4326));
insert into t1 values(9, ST_SRID(Point(9,9), 4326));
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;
SET SESSION debug="+d, rtr_page_need_second_split";
insert into t1 select * from t1;
SET SESSION debug="-d, rtr_page_need_second_split";
delete from t1;
insert into t1 values(1, ST_SRID(Point(1,1), 4326));
insert into t1 values(2, ST_SRID(Point(2,2), 4326));
insert into t1 values(3, ST_SRID(Point(3,3), 4326));
insert into t1 values(4, ST_SRID(Point(4,4), 4326));
insert into t1 values(5, ST_SRID(Point(5,5), 4326));
insert into t1 values(6, ST_SRID(Point(6,6), 4326));
insert into t1 values(7, ST_SRID(Point(7,7), 4326));
insert into t1 values(8, ST_SRID(Point(8,8), 4326));
insert into t1 values(9, ST_SRID(Point(9,9), 4326));
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;
start transaction;
insert into t1 select * from t1;
rollback;
check table t1;
Table Op Msg_type Msg_text
test.t1 check status OK
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;
check table t1;
Table Op Msg_type Msg_text
test.t1 check status OK
select count(*) from t1;
count(*)
73728
set @g1 = ST_GeomFromText('Polygon((-90 -180,-90 180,90 180,90 -180,-90 -180))', 4326);
select count(*) from t1 where MBRWithin(t1.c2, @g1);
count(*)
0
set @g1 = ST_GeomFromText('Polygon((10 10,10 180,90 180,90 10,10 10))', 4326);
select count(*) from t1 where MBRWithin(t1.c2, @g1);
count(*)
0
drop index c2 on t1;
create spatial index idx2 on t1(c2);
show create table t1;
Table Create Table
t1 CREATE TABLE `t1` (
`c1` int DEFAULT NULL,
`c2` geometry NOT NULL /*!80003 SRID 4326 */,
SPATIAL KEY `idx2` (`c2`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci
set @g1 = ST_GeomFromText('Polygon((-90 -180,-90 180,90 180,90 -180,-90 -180))', 4326);
select count(*) from t1 where MBRWithin(t1.c2, @g1);
count(*)
0
SET GLOBAL innodb_fast_shutdown = 0;
# restart: --innodb-read-only
set @g1 = ST_GeomFromText('Polygon((-90 -180,-90 180,90 180,90 -180,-90 -180))', 4326);
select count(*) from t1 where MBRWithin(t1.c2, @g1);
count(*)
0
set @g1 = ST_GeomFromText('Polygon((2 2,2 180,90 180,90 2,2 2))', 4326);
select count(*) from t1 where MBRWithin(t1.c2, @g1);
count(*)
57344
# restart
drop table t1;
|