-
Notifications
You must be signed in to change notification settings - Fork 1k
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
Misc. SQLAlchemy 2.0 upgrades #13562
Merged
Merged
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Ref: https://docs.sqlalchemy.org/en/14/changelog/migration_20.html#library-level-but-not-driver-level-autocommit-removed-from-both-core-and-ormo https://docs.sqlalchemy.org/en/14/changelog/migration_20.html#implicit-and-connectionless-execution-bound-metadata-removed Exposed by the following tests: test/unit/data/model/test_model_discovery.py::test_model_create_context_persist_hdas test/unit/data/model/test_model_discovery.py::test_model_create_context_persist_error_hda test/unit/data/model/test_model_discovery.py::test_persist_target_library_dataset test/unit/data/model/test_model_discovery.py::test_persist_target_library_folder test/unit/data/model/test_model_discovery.py::test_persist_target_hdca /home/sergey/0dev/galaxy/_galaxy/dev/lib/galaxy/model/triggers/utils.py:8: RemovedIn20Warning: The DDLElement.execute() method is considered legacy as of the 1.x series of SQLAlchemy and will be removed in 2.0. All statement execution in SQLAlchemy 2.0 is performed by the Connection.execute() method of Connection, or in the ORM by the Session.execute() method of Session. (Background on SQLAlchemy 2.0 at: https://sqlalche.me/e/b8d9) cmd.execute(bind=engine) test/unit/data/model/test_model_discovery.py::test_model_create_context_persist_hdas test/unit/data/model/test_model_discovery.py::test_model_create_context_persist_error_hda test/unit/data/model/test_model_discovery.py::test_persist_target_library_dataset test/unit/data/model/test_model_discovery.py::test_persist_target_library_folder test/unit/data/model/test_model_discovery.py::test_persist_target_hdca /home/sergey/0dev/galaxy/_galaxy/dev/lib/galaxy/model/triggers/utils.py:8: RemovedIn20Warning: The Engine.execute() method is considered legacy as of the 1.x series of SQLAlchemy and will be removed in 2.0. All statement execution in SQLAlchemy 2.0 is performed by the Connection.execute() method of Connection, or in the ORM by the Session.execute() method of Session. (Background on SQLAlchemy 2.0 at: https://sqlalche.me/e/b8d9) cmd.execute(bind=engine)
Fixes multiple instances of RemovedIn20Warning Joining / loading on relationships uses attributes, not strings Ref: https://docs.sqlalchemy.org/en/14/changelog/migration_20.html#orm-query-joining-loading-on-relationships-uses-attributes-not-strings
jdavcs
added
kind/refactoring
cleanup or refactoring of existing code, no functional changes
area/database
Galaxy's database or data access layer
labels
Mar 16, 2022
TODO: database.actions can be fixed only after moving Dataset to declarative mapping.
jdavcs
changed the title
[WIP] Misc. SQLAlchemy 2.0 upgrades
Misc. SQLAlchemy 2.0 upgrades
Mar 17, 2022
Very cool @ic4f :-) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Labels
area/database
Galaxy's database or data access layer
kind/refactoring
cleanup or refactoring of existing code, no functional changes
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Ref #12541
These are all safe and mostly trivial.
How to test the changes?
(Select all options that apply)
License