summaryrefslogtreecommitdiffstats
path: root/mysql-test/suite/innodb_gis/r/rtree_add_index.result
blob: be15d97ad167b47755099a70ba906019c1ab4c4d (plain)
1
2
3
4
5
6
7
8
9
10
CREATE TABLE t1 (g MULTIPOINT NOT NULL) ENGINE=InnoDB STATS_PERSISTENT=0;
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;