#5348 - seo_meta ftjoin_dmeta_description index: can't be done on longtext field
| Identifier | #5348 |
|---|---|
| Issue type | Minor issue (breaks specific functionality) |
| Title | seo_meta ftjoin_dmeta_description index: can't be done on longtext field |
| Status | Closed (no changes needed) |
| Handling member | Deleted |
| Addon | General / Uncategorised |
| Description | mysql complains when trying to add meta_description index on seo_meta via database repair tool (it does not specify a key length). I temporarily removed this index from install.php. The general recommendation is that indexes should not be added on BLOB/TEXT fields. |
| Steps to reproduce | |
| Funded? | No |
The system will post a comment when this issue is modified (e.g., status changes). To be notified of this, click "Enable comment notifications".

Comments
Creation is skipped via this code:
if (($is_full_text) && (multi_lang_content()) && (strpos($db_type, '_TRANS') !== false)) {
return null; // We don't create a full-text index on *_TRANS fields if we are directing through the translate table
}