Updated SQL Server extensions to fix build failures on PHP 7.4

parent 80122862
...@@ -37,9 +37,6 @@ after_script: ...@@ -37,9 +37,6 @@ after_script:
fi fi
jobs: jobs:
allow_failures:
- php: 7.4snapshot
include: include:
- stage: Smoke Testing - stage: Smoke Testing
......
...@@ -340,7 +340,9 @@ class SQLServerSchemaManager extends AbstractSchemaManager ...@@ -340,7 +340,9 @@ class SQLServerSchemaManager extends AbstractSchemaManager
$tableOptions = $this->_conn->fetchAssoc($sql); $tableOptions = $this->_conn->fetchAssoc($sql);
if ($tableOptions !== false) {
$table->addOption('comment', $tableOptions['table_comment']); $table->addOption('comment', $tableOptions['table_comment']);
}
return $table; return $table;
} }
......
...@@ -4,4 +4,4 @@ set -ex ...@@ -4,4 +4,4 @@ set -ex
echo "Installing extension" echo "Installing extension"
pecl install pdo_sqlsrv pecl install pdo_sqlsrv-5.7.0preview
...@@ -4,4 +4,4 @@ set -ex ...@@ -4,4 +4,4 @@ set -ex
echo "Installing extension" echo "Installing extension"
pecl install sqlsrv pecl install sqlsrv-5.7.0preview
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment