-
-
Notifications
You must be signed in to change notification settings - Fork 389
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Address or ignore deprecations #1226
Conversation
# Switch to Logging\Connection after dropping compatibility with DBAL 2 | ||
- | ||
message: '~deprecated.*DebugStack~' | ||
path: tests/Doctrine/Migrations/Tests/Metadata/Storage/TableMetadataStorageTest.php |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This test relies on the DebugStack
to determine how many queries were performed.
@@ -23,3 +23,14 @@ parameters: | |||
- tests/Doctrine/Migrations/Tests/Tools/Console/legacy-config-dbal/cli-config.php | |||
- tests/Doctrine/Migrations/Tests/Tools/Console/legacy-config-wrong/cli-config.php | |||
|
|||
# We need to implement platform-aware comparison |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This seems to impactful to do in this pull request. Not sure it would qualify as a bugfix either (but then neither does addressing a deprecation if you ask me).
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Keeping track of this at #1227
687674b
to
0b37cf2
Compare
It should be noted that this changes the generated SQL inside migrations so that it does not generate code that triggers deprecations.
this seems to close #1218 |
Summary
It should be noted that this changes the generated SQL inside migrations
so that it does not generate code that triggers deprecations.
Closes #1218