mirror of
https://github.com/MariaDB/server.git
synced 2025-07-29 05:21:33 +03:00
Merge branch '10.2' into 10.3
This commit is contained in:
@ -178,3 +178,13 @@ Table Op Msg_type Msg_text
|
||||
test.t1 optimize status OK
|
||||
DROP TABLE t1;
|
||||
SET GLOBAL innodb_optimize_fulltext_only= @optimize_fulltext.save;
|
||||
#
|
||||
# MDEV-24403 Segfault on CREATE TABLE with explicit FTS_DOC_ID_INDEX by multiple fields
|
||||
#
|
||||
create table t1 (
|
||||
f1 int, f2 text,
|
||||
FTS_DOC_ID bigint unsigned not null,
|
||||
unique key FTS_DOC_ID_INDEX(FTS_DOC_ID, f1),
|
||||
fulltext (f2))
|
||||
engine=innodb;
|
||||
ERROR 42000: Incorrect index name 'FTS_DOC_ID_INDEX'
|
||||
|
Reference in New Issue
Block a user