Current Path : /home/usr.opt/mysql57/mysql-test/suite/innodb_gis/r/ |
FreeBSD hs32.drive.ne.jp 9.1-RELEASE FreeBSD 9.1-RELEASE #1: Wed Jan 14 12:18:08 JST 2015 root@hs32.drive.ne.jp:/sys/amd64/compile/hs32 amd64 |
Current File : //home/usr.opt/mysql57/mysql-test/suite/innodb_gis/r/rtree_purge.result |
create table t ( a point not null,b point not null,c point, d point not null,e point,f point, spatial key (d),spatial key (b) ) engine=innodb; create procedure p(i int) begin declare n int default 0; declare continue handler for sqlexception begin end; delete from t; repeat set @p=point(1,1); insert into t values(@p,@p,@p,@p,@p,@p); insert into t values(@p,@p,@p,@p,@p,@p); insert into t select @p,@p,@p,@p,@p,@p from t a,t b,t c,t d,t e,t f,t g,t h,t i,t j; delete from t; set n:=n+1; until n >= i end repeat; end| call p(200); drop procedure p; drop table t;