mirror of
https://github.com/MariaDB/server.git
synced 2025-07-27 18:02:13 +03:00
Merge 10.2 into 10.3
This commit is contained in:
13
mysql-test/suite/innodb_gis/r/rtree_add_index.result
Normal file
13
mysql-test/suite/innodb_gis/r/rtree_add_index.result
Normal file
@ -0,0 +1,13 @@
|
||||
SET @saved_frequency = @@GLOBAL.innodb_purge_rseg_truncate_frequency;
|
||||
SET GLOBAL innodb_purge_rseg_truncate_frequency = 1;
|
||||
CREATE TABLE t1 (g MULTIPOINT NOT NULL) ENGINE=InnoDB;
|
||||
INSERT INTO t1 VALUES ('');
|
||||
connect purge_control,localhost,root;
|
||||
START TRANSACTION WITH CONSISTENT SNAPSHOT;
|
||||
connection default;
|
||||
DELETE FROM t1;
|
||||
ALTER TABLE t1 ADD SPATIAL INDEX (g);
|
||||
disconnect purge_control;
|
||||
InnoDB 0 transactions not purged
|
||||
DROP TABLE t1;
|
||||
SET GLOBAL innodb_purge_rseg_truncate_frequency = @saved_frequency;
|
Reference in New Issue
Block a user