diff options
author | mike bayer <mike_mp@zzzcomputing.com> | 2020-10-14 15:00:49 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@bbpush.zzzcomputing.com> | 2020-10-14 15:00:49 +0000 |
commit | 3bdf56dc7d4624b8b1b07c9e49e945dfe6a14e62 (patch) | |
tree | fdeeea9d92f47da83668fee449f1c93d2df6688e /lib/sqlalchemy/testing/warnings.py | |
parent | 34f8622b687f33dadff4f8e81532b3f4050246f4 (diff) | |
parent | 348260943a52ddd7ee3388eaac8e05da3794958b (diff) | |
download | sqlalchemy-3bdf56dc7d4624b8b1b07c9e49e945dfe6a14e62.tar.gz |
Merge "Deprecate strings indicating attribute names"
Diffstat (limited to 'lib/sqlalchemy/testing/warnings.py')
-rw-r--r-- | lib/sqlalchemy/testing/warnings.py | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/lib/sqlalchemy/testing/warnings.py b/lib/sqlalchemy/testing/warnings.py index bfa09d00a..8ccb6516a 100644 --- a/lib/sqlalchemy/testing/warnings.py +++ b/lib/sqlalchemy/testing/warnings.py @@ -111,6 +111,17 @@ def setup_filters(): r"The Query\.with_parent\(\) function", r"The Query\.with_parent\(\) function", r"The Query\.select_entity_from\(\) function", + r"The ``aliased`` and ``from_joinpoint`` keyword arguments", + r"Using strings to indicate relationship names in Query.join", + r"Using strings to indicate column or relationship paths in " + "loader options", + r"Using strings to indicate relationship names in the ORM " + r"with_parent\(\)", + r"The Query.with_polymorphic\(\) function/method is considered " + "legacy as of the 1.x series", + r"Passing a chain of multiple join conditions to Query.join\(\) " + r"is deprecated and will be removed in SQLAlchemy 2.0.", + r"Query.join\(\) will no longer accept tuples as arguments", # # ORM Session # |