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 01e20d2 commit d41bc5bCopy full SHA for d41bc5b
lib/internal/Magento/Framework/Mview/View/Subscription.php
@@ -192,7 +192,9 @@ protected function getLinkedViews()
192
protected function buildStatement($event, $changelog)
193
{
194
$columns = [];
195
- if ($describe = $this->connection->describeTable($this->getTableName())) {
+ if ($this->connection->isTableExists($this->getTableName())
196
+ && $describe = $this->connection->describeTable($this->getTableName())
197
+ ) {
198
foreach ($describe as $column) {
199
if (in_array($column['COLUMN_NAME'], $this->ignoredUpdateColumns)) {
200
continue;
0 commit comments