1
0
mirror of https://github.com/MariaDB/server.git synced 2025-08-08 11:22:35 +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:
Thirunarayanan Balathandayuthapani
2018-05-07 14:56:53 +05:30
parent 85cc6b70bd
commit c5b28e55f6
16 changed files with 0 additions and 117 deletions

View File

@@ -277,8 +277,6 @@ PRIMARY KEY (id),
KEY ind5 (title)
) ENGINE = InnoDB;
CREATE FULLTEXT INDEX ft1 ON t1(title);
Warnings:
Warning 124 InnoDB rebuilding table to add column FTS_DOC_ID
insert into t1 (title) values ('this is a test');
select * from t1 where match title against ('test' in boolean mode);
id title