diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-05-04 18:00:34 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-05-04 18:00:34 +0000 |
commit | 3f619478f796eddbba6e39502fe941b285dd97b1 (patch) | |
tree | e2c7b5777f728320e5b5542b6213fd3591ba51e2 /mysql-test/suite/innodb_gis/r/rtree_split.result | |
parent | Initial commit. (diff) | |
download | mariadb-upstream.tar.xz mariadb-upstream.zip |
Adding upstream version 1:10.11.6.upstream/1%10.11.6upstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'mysql-test/suite/innodb_gis/r/rtree_split.result')
-rw-r--r-- | mysql-test/suite/innodb_gis/r/rtree_split.result | 75 |
1 files changed, 75 insertions, 0 deletions
diff --git a/mysql-test/suite/innodb_gis/r/rtree_split.result b/mysql-test/suite/innodb_gis/r/rtree_split.result new file mode 100644 index 00000000..97027bde --- /dev/null +++ b/mysql-test/suite/innodb_gis/r/rtree_split.result @@ -0,0 +1,75 @@ +create table t1 (c1 int, c2 geometry not null, spatial index (c2))engine=innodb; +begin; +insert into t1 select @s:=1+(seq mod 9), point(@s, @s) +from seq_1_to_576; +SET @saved_dbug = @@SESSION.debug_dbug; +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; +SET debug_dbug = @saved_dbug; +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; +rollback; +check table t1; +Table Op Msg_type Msg_text +test.t1 check status OK +insert into t1 select @s:=1+(seq mod 9), point(@s, @s) +from seq_1_to_71424; +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); +affected rows: 0 +info: Records: 0 Duplicates: 0 Warnings: 0 +show create table t1; +Table Create Table +t1 CREATE TABLE `t1` ( + `c1` int(11) DEFAULT NULL, + `c2` geometry NOT NULL, + SPATIAL KEY `idx2` (`c2`) +) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci +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(*) +57344 +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(*) +57344 +drop table t1; +# +# MDEV-30400 Assertion height == btr_page_get_level ... on INSERT +# +CREATE TABLE t1 (c POINT NOT NULL,SPATIAL (c)) ENGINE=InnoDB; +SET @save_limit=@@GLOBAL.innodb_limit_optimistic_insert_debug; +SET GLOBAL innodb_limit_optimistic_insert_debug=2; +BEGIN; +INSERT INTO t1 SELECT POINTFROMTEXT ('POINT(0 0)') FROM seq_1_to_6; +ROLLBACK; +SET GLOBAL innodb_limit_optimistic_insert_debug=@save_limit; +DROP TABLE t1; +# End of 10.6 tests |