summaryrefslogtreecommitdiff
path: root/mysql-test/suite/innodb/t/innodb_gis.test
blob: 45d66d950025ec74a5164dc3f8f7191556dd167a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
--source include/have_innodb.inc
SET storage_engine=innodb;
--source include/gis_generic.inc
--source include/gis_keys.inc

#
# Bug #15680 (SPATIAL key in innodb)
#
# MySQL 5.7 Introduces SPATIAL keys for InnoDB
#--error ER_TABLE_CANT_HANDLE_SPKEYS
create table t1 (g geometry not null, spatial gk(g)) engine=innodb;
drop table t1;