Information Schema INNODB_FT_DELETED Table
The INNODB_FT_DELETED table lists document IDs of rows that have been deleted from an InnoDB FULLTEXT index but not yet removed from the index files.
Column
Description
Example
SELECT * FROM INFORMATION_SCHEMA.INNODB_FT_DELETED;
+--------+
| DOC_ID |
+--------+
| 2 |
+--------+
DELETE FROM test.ft_innodb LIMIT 1;
SELECT * FROM INFORMATION_SCHEMA.INNODB_FT_DELETED;
+--------+
| DOC_ID |
+--------+
| 2 |
| 3 |
+--------+PreviousInformation Schema INNODB_FT_DEFAULT_STOPWORD TableNextInformation Schema INNODB_FT_INDEX_CACHE Table
Last updated
Was this helpful?

