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 311d238 commit d826489Copy full SHA for d826489
app/code/core/Mage/ImportExport/Model/Resource/Helper/Mysql4.php
@@ -74,7 +74,9 @@ public function getNextAutoincrement($tableName)
74
public function setInformationSchemaStatsExpiry(): void
75
{
76
if (!self::$instantInformationSchemaStatsExpiry) {
77
- $this->_getReadAdapter()->query('SET information_schema_stats_expiry = 0;');
+ try {
78
+ $this->_getReadAdapter()->query('SET information_schema_stats_expiry = 0;');
79
+ } catch (Exception $e) {}
80
self::$instantInformationSchemaStatsExpiry = true;
81
}
82
0 commit comments