mirror of
https://github.com/MariaDB/server.git
synced 2025-08-07 00:04:31 +03:00
MDEV-13134 Introduce ALTER TABLE attributes ALGORITHM=NOCOPY and ALGORITHM=INSTANT
Remove the warning for InnoDB rebuilding table to add column FTS_DOC_ID.
This commit is contained in:
@@ -895,8 +895,6 @@ DROP TABLE t;
|
||||
CREATE TABLE t(a TEXT CHARSET UTF8)ENGINE=INNODB;
|
||||
ALTER TABLE t ADD COLUMN b BLOB GENERATED ALWAYS AS (a) VIRTUAL ;
|
||||
ALTER TABLE t ADD FULLTEXT INDEX (a) ;
|
||||
Warnings:
|
||||
Warning 124 InnoDB rebuilding table to add column FTS_DOC_ID
|
||||
ALTER TABLE t ADD INDEX (b(1)) ;
|
||||
DROP TABLE t;
|
||||
CREATE TABLE t(a TEXT CHARSET UTF8, FULLTEXT INDEX(a))ENGINE=INNODB;
|
||||
|
Reference in New Issue
Block a user