Merge pull request #6148 from nextcloud/backport-6047-select-indexed-columns

[stable12] Use indexed column path_hash to find the parent
This commit is contained in:
Roeland Jago Douma 2017-08-23 15:58:59 +02:00 committed by GitHub
commit a62620feeb
1 changed files with 2 additions and 2 deletions

View File

@ -88,11 +88,11 @@ class RepairInvalidPaths implements IRepairStep {
$this->getIdQuery = $builder->select('fileid')
->from('filecache')
->where($builder->expr()->eq('storage', $builder->createParameter('storage')))
->andWhere($builder->expr()->eq('path', $builder->createParameter('path')));
->andWhere($builder->expr()->eq('path_hash', $builder->createParameter('path_hash')));
}
$this->getIdQuery->setParameter('storage', $storage, IQueryBuilder::PARAM_INT);
$this->getIdQuery->setParameter('path', $path);
$this->getIdQuery->setParameter('path_hash', md5($path));
return $this->getIdQuery->execute()->fetchColumn();
}