Skip to content

Commit 27e1c6e

Browse files
committed
Explicitly define type for in condition
1 parent f70f1d2 commit 27e1c6e

File tree

1 file changed

+1
-1
lines changed
  • app/code/Magento/Catalog/Model/Indexer/Category/Product/Action

1 file changed

+1
-1
lines changed

app/code/Magento/Catalog/Model/Indexer/Category/Product/Action/Full.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -282,7 +282,7 @@ private function reindexCategoriesBySelect(Select $basicSelect, $whereCondition,
282282
$this->connection->delete($this->tableMaintainer->getMainTmpTable((int)$store->getId()));
283283
$entityIds = $this->connection->fetchCol($query);
284284
$resultSelect = clone $basicSelect;
285-
$resultSelect->where($whereCondition, $entityIds);
285+
$resultSelect->where($whereCondition, $entityIds, \Zend_Db::BIGINT_TYPE);
286286
$this->connection->query(
287287
$this->connection->insertFromSelect(
288288
$resultSelect,

0 commit comments

Comments
 (0)