1
0
mirror of https://github.com/MariaDB/server.git synced 2026-01-06 05:22:24 +03:00

bug #15860 (SPATIAL keys in INNODB)

This commit is contained in:
holyfoot@deer.(none)
2006-04-12 22:05:23 +05:00
parent 7c70159097
commit c2acfc5b7c
6 changed files with 19 additions and 1 deletions

View File

@@ -2139,3 +2139,10 @@ insert into t2 values('2005-10-01');
select * from t1, t2
where t2.a between t1.a - interval 2 day and t1.a + interval 2 day;
drop table t1, t2;
#
# Bug #15680 (SPATIAL key in innodb)
#
--error 1461
create table t1 (g geometry not null, spatial gk(g)) engine=innodb;