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.
1 parent 80ad393 commit d2cca2cCopy full SHA for d2cca2c
app/code/Magento/Catalog/Model/ResourceModel/Product/Indexer/Eav/Source.php
@@ -405,4 +405,17 @@ protected function _prepareRelationIndex($parentIds = null)
405
}
406
return $this;
407
408
+
409
+ /**
410
+ * @inheritdoc
411
+ */
412
+ public function clearTemporaryIndexTable()
413
+ {
414
+ if (!$this->tableStrategy->getUseIdxTable()) {
415
+ // Drop temporary index table
416
+ $this->getConnection()->dropTable($this->getIdxTable());
417
+ } else {
418
+ parent::clearTemporaryIndexTable();
419
+ }
420
421
0 commit comments