mirror of
https://github.com/MariaDB/server.git
synced 2025-05-05 16:59:35 +03:00
storage/innobase/handler/handler0alter.cc: for NEWDATE key_type says unsigned, thus col->prtype says unsigned, but field->flags says signed. Use the same flag for value retrieval that was used for value storage.
11 lines
269 B
Plaintext
11 lines
269 B
Plaintext
--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)
|
|
#
|
|
--error ER_TABLE_CANT_HANDLE_SPKEYS
|
|
create table t1 (g geometry not null, spatial gk(g)) engine=innodb;
|