Skip to content
Snippets Groups Projects
Commit a3367ca8 authored by Sascha Egerer's avatar Sascha Egerer Committed by Benni Mack
Browse files

[BUGFIX] Do not use named parameter for list of orphan records ids

The OrphanRecordsCommand fetches records by a list of ids.
This list can get very big so the database will fail if the
number of placesholders exceeds its limit.

Resolves: #85257
Related: #80875
Releases: master, 8.7
Change-Id: Ia6b9398f4e54157301abb57fac5adb7f51130907
Reviewed-on: https://review.typo3.org/57213


Tested-by: default avatarTYPO3com <no-reply@typo3.com>
Tested-by: default avatarThomas Rawiel <thomas.rawiel@gmail.com>
Reviewed-by: default avatarSusanne Moog <susanne.moog@typo3.org>
Reviewed-by: default avatarBenni Mack <benni@typo3.org>
Tested-by: default avatarBenni Mack <benni@typo3.org>
parent 09576ce7
Branches
Tags
No related merge requests found
...@@ -102,7 +102,8 @@ Manual repair suggestions: ...@@ -102,7 +102,8 @@ Manual repair suggestions:
->where( ->where(
$queryBuilder->expr()->notIn( $queryBuilder->expr()->notIn(
'uid', 'uid',
$queryBuilder->createNamedParameter($idList, Connection::PARAM_INT_ARRAY) // do not use named parameter here as the list can get too long
array_map('intval', $idList)
) )
) )
->orderBy('uid') ->orderBy('uid')
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment