We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents f26dc79 + 33a8e22 commit 6f661deCopy full SHA for 6f661de
apps/dav/lib/Migration/RemoveOrphanEventsAndContacts.php
@@ -77,7 +77,7 @@ protected function removeOrphanChildren($childTable, $parentTable, $parentId): i
77
$qb->delete($childTable)
78
->where($qb->expr()->in('id', $qb->createParameter('ids')));
79
80
- $orphanItemsBatch = array_chunk($orphanItems, 200);
+ $orphanItemsBatch = array_chunk($orphanItems, 1000);
81
foreach ($orphanItemsBatch as $items) {
82
$qb->setParameter('ids', $items, IQueryBuilder::PARAM_INT_ARRAY);
83
$qb->executeStatement();
0 commit comments