---
title: "Breaking: #102975 - Use full md5 hashes in indexed_search"
manual: "TYPO3 Core Changelog"
version: "main"
permalink: "https://docs.typo3.org/permalink/changelog:breaking-102975-1706525161"
source: "Changelog/13.0/Breaking-102975-UseFullMd5HashesInIndexed_search.rst"
typo3-version: "13.0"
typo3-major: 13
type: "breaking"
issue: 102975
forge: "https://forge.typo3.org/issues/102975"
tags: ["Database", "NotScanned", "ext:indexed_search"]
rendered: "2026-09-20T18:31:11+00:00"
---

# Breaking: #102975 - Use full md5 hashes in `indexed_search` {#breaking-102975-1706525161}

See [forge#102975](https://forge.typo3.org/issues/102975)

## Description {#description}

For historical reasons an integer representation for castrated md5 hashes has
been used in several places for the `ext:indexed_search` provided database schema
and functionality. This led to conflicts that manifested as "duplicate key" errors.

Therefore, the database fields are transformed to varchar fields and the whole
indexed search codebase changed to work with full md5 hashes now.

Due to the database changes it is necessary to truncate the indexed search tables,
which is done within the database analyzer. Reindexing the data is therefore
required.

Field types of following table fields are changed now:

-   `index_phash`: `phash`, `phash_grouping`, `contentHash`
-   `index_fulltext`: `phash`
-   `index_rel`: `phash`, `wid`
-   `index_words`: `wid`
-   `index_section`: `phash`, `phash_t3`
-   `index_grlist`: `phash`, `phash_x`, `hash_gr_list`
-   `index_debug`: `phash`

> [!NOTE]
> Remember to reindex your installation to fill the index again.

## Impact {#impact}

Installations using the `ext:indexed_search` need to apply a database schema
change which involves the truncation of the corresponding tables and reindex
the installation.

## Affected installations {#affected-installations}

All installations using `EXT:indexed_search` are affected.

## Migration {#migration}

The database analyzer takes care of updating affected columns and truncates
index related tables to be ready for reindexing.
