Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
D
doctrine-dbal
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Tomáš Trávníček
doctrine-dbal
Commits
cc405b8f
Unverified
Commit
cc405b8f
authored
Oct 17, 2019
by
Sergei Morozov
Committed by
GitHub
Oct 17, 2019
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #3702 from morozov/sqlsrv-5.7.0preview
Updated SQL Server extensions to fix build failures on PHP 7.4
parents
80122862
0dab22fd
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
5 additions
and
6 deletions
+5
-6
.travis.yml
.travis.yml
+0
-3
SQLServerSchemaManager.php
lib/Doctrine/DBAL/Schema/SQLServerSchemaManager.php
+3
-1
install-mssql-pdo_sqlsrv.sh
tests/travis/install-mssql-pdo_sqlsrv.sh
+1
-1
install-mssql-sqlsrv.sh
tests/travis/install-mssql-sqlsrv.sh
+1
-1
No files found.
.travis.yml
View file @
cc405b8f
...
...
@@ -37,9 +37,6 @@ after_script:
fi
jobs
:
allow_failures
:
-
php
:
7.4snapshot
include
:
-
stage
:
Smoke Testing
...
...
lib/Doctrine/DBAL/Schema/SQLServerSchemaManager.php
View file @
cc405b8f
...
...
@@ -340,7 +340,9 @@ class SQLServerSchemaManager extends AbstractSchemaManager
$tableOptions
=
$this
->
_conn
->
fetchAssoc
(
$sql
);
$table
->
addOption
(
'comment'
,
$tableOptions
[
'table_comment'
]);
if
(
$tableOptions
!==
false
)
{
$table
->
addOption
(
'comment'
,
$tableOptions
[
'table_comment'
]);
}
return
$table
;
}
...
...
tests/travis/install-mssql-pdo_sqlsrv.sh
View file @
cc405b8f
...
...
@@ -4,4 +4,4 @@ set -ex
echo
"Installing extension"
pecl
install
pdo_sqlsrv
pecl
install
pdo_sqlsrv
-5.7.0preview
tests/travis/install-mssql-sqlsrv.sh
View file @
cc405b8f
...
...
@@ -4,4 +4,4 @@ set -ex
echo
"Installing extension"
pecl
install
sqlsrv
pecl
install
sqlsrv
-5.7.0preview
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment