summaryrefslogtreecommitdiffstats
path: root/mysql-test/suite/innodb_gis/r/rtree_add_index.result
blob: ba552e278d4debecf440b938ef52376677ac50bd (plain)
1
2
3
4
5
6
7
8
9
10
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;