22 lines
585 B
MySQL
22 lines
585 B
MySQL
|
drop table if exists gh_ost_test;
|
||
|
create table gh_ost_test (
|
||
|
id int auto_increment,
|
||
|
g geometry,
|
||
|
primary key(id)
|
||
|
) auto_increment=1;
|
||
|
|
||
|
drop event if exists gh_ost_test;
|
||
|
delimiter ;;
|
||
|
create event gh_ost_test
|
||
|
on schedule every 1 second
|
||
|
starts current_timestamp
|
||
|
ends current_timestamp + interval 60 second
|
||
|
on completion not preserve
|
||
|
enable
|
||
|
do
|
||
|
begin
|
||
|
insert into gh_ost_test values (null, ST_GeomFromText('POINT(1 1)'));
|
||
|
insert into gh_ost_test values (null, ST_GeomFromText('POINT(2 2)'));
|
||
|
insert into gh_ost_test values (null, ST_GeomFromText('POINT(3 3)'));
|
||
|
end ;;
|