blob: dec0c8bf725959849554cde41024d2a5f25b175e (
plain)
1
2
3
4
5
6
7
8
9
|
SET storage_engine=innodb;
--source include/gis_generic.inc
--source include/gis_keys.inc
#
# Bug #15680 (SPATIAL key in innodb)
#
--error ER_TABLE_CANT_HANDLE_SPKEYS
create table t1 (g geometry not null, spatial gk(g)) engine=innodb;
|