2017-10-12 16:21:21 +03:00
|
|
|
create table t1 (c1 int, c2 geometry not null, spatial index (c2))engine=innodb;
|
2020-04-28 19:05:56 +03:00
|
|
|
begin;
|
|
|
|
insert into t1 select @s:=1+(seq mod 9), point(@s, @s)
|
|
|
|
from seq_1_to_576;
|
2018-01-04 19:16:59 +02:00
|
|
|
SET @saved_dbug = @@SESSION.debug_dbug;
|
2020-04-28 19:05:56 +03:00
|
|
|
SET debug_dbug = '+d,rtr_page_need_second_split';
|
|
|
|
insert into t1 select @s:=1+(seq mod 9), point(@s, @s)
|
|
|
|
from seq_1_to_576;
|
2018-01-04 19:16:59 +02:00
|
|
|
SET debug_dbug = @saved_dbug;
|
2020-04-28 19:05:56 +03:00
|
|
|
rollback;
|
|
|
|
insert into t1 select @s:=1+(seq mod 9), point(@s, @s)
|
|
|
|
from seq_1_to_2304;
|
|
|
|
begin;
|
|
|
|
insert into t1 select @s:=1+(seq mod 9), point(@s, @s)
|
|
|
|
from seq_1_to_2304;
|
2017-10-12 16:21:21 +03:00
|
|
|
rollback;
|
|
|
|
check table t1;
|
|
|
|
Table Op Msg_type Msg_text
|
|
|
|
test.t1 check status OK
|
2020-04-28 19:05:56 +03:00
|
|
|
insert into t1 select @s:=1+(seq mod 9), point(@s, @s)
|
|
|
|
from seq_1_to_71424;
|
2017-10-12 16:21:21 +03:00
|
|
|
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((0 0,0 100,100 100,100 0,0 0))');
|
|
|
|
select count(*) from t1 where MBRWithin(t1.c2, @g1);
|
|
|
|
count(*)
|
|
|
|
73728
|
|
|
|
set @g1 = ST_GeomFromText('Polygon((10 10,10 800,800 800,800 10,10 10))');
|
|
|
|
select count(*) from t1 where MBRWithin(t1.c2, @g1);
|
|
|
|
count(*)
|
|
|
|
0
|
|
|
|
drop index c2 on t1;
|
|
|
|
create spatial index idx2 on t1(c2);
|
2018-01-04 19:16:59 +02:00
|
|
|
affected rows: 0
|
|
|
|
info: Records: 0 Duplicates: 0 Warnings: 0
|
2017-10-12 16:21:21 +03:00
|
|
|
show create table t1;
|
|
|
|
Table Create Table
|
|
|
|
t1 CREATE TABLE `t1` (
|
|
|
|
`c1` int(11) DEFAULT NULL,
|
|
|
|
`c2` geometry NOT NULL,
|
|
|
|
SPATIAL KEY `idx2` (`c2`)
|
2022-09-02 17:32:14 +04:00
|
|
|
) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci
|
2017-10-12 16:21:21 +03:00
|
|
|
set @g1 = ST_GeomFromText('Polygon((0 0,0 100,100 100,100 0,0 0))');
|
|
|
|
select count(*) from t1 where MBRWithin(t1.c2, @g1);
|
|
|
|
count(*)
|
|
|
|
73728
|
2018-01-04 19:16:59 +02:00
|
|
|
set @g1 = ST_GeomFromText('Polygon((2 2,2 800,800 800,800 2,2 2))');
|
|
|
|
select count(*) from t1 where MBRWithin(t1.c2, @g1);
|
|
|
|
count(*)
|
2020-03-19 06:58:49 +02:00
|
|
|
57344
|
2017-10-12 16:21:21 +03:00
|
|
|
set @g1 = ST_GeomFromText('Polygon((0 0,0 100,100 100,100 0,0 0))');
|
|
|
|
select count(*) from t1 where MBRWithin(t1.c2, @g1);
|
|
|
|
count(*)
|
|
|
|
73728
|
|
|
|
set @g1 = ST_GeomFromText('Polygon((2 2,2 800,800 800,800 2,2 2))');
|
|
|
|
select count(*) from t1 where MBRWithin(t1.c2, @g1);
|
|
|
|
count(*)
|
2020-03-19 06:58:49 +02:00
|
|
|
57344
|
2017-10-12 16:21:21 +03:00
|
|
|
drop table t1;
|