diff options
| author | mike bayer <mike_mp@zzzcomputing.com> | 2021-10-20 16:28:16 +0000 |
|---|---|---|
| committer | Gerrit Code Review <gerrit@ci3.zzzcomputing.com> | 2021-10-20 16:28:16 +0000 |
| commit | ee340d17ea45b25c063d7bfca999b7b8031ff0fe (patch) | |
| tree | 364dfa17787ed11cc28f20dff1ff0e44db0ac41c /lib/sqlalchemy/sql | |
| parent | b961505986c0499ba63a0105d1b79aaa6db738a0 (diff) | |
| parent | 5ce5cd624a43f1435a4bcba56f64e9b45c518780 (diff) | |
| download | sqlalchemy-ee340d17ea45b25c063d7bfca999b7b8031ff0fe.tar.gz | |
Merge "Add missing deprecation to ``MetaData.bind`` argument" into main
Diffstat (limited to 'lib/sqlalchemy/sql')
| -rw-r--r-- | lib/sqlalchemy/sql/schema.py | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/lib/sqlalchemy/sql/schema.py b/lib/sqlalchemy/sql/schema.py index 25c676bd8..166ad98cd 100644 --- a/lib/sqlalchemy/sql/schema.py +++ b/lib/sqlalchemy/sql/schema.py @@ -4504,6 +4504,12 @@ class MetaData(SchemaItem): engine = create_engine("someurl://") metadata.bind = engine + .. deprecated :: 1.4 + + The metadata.bind attribute, as part of the deprecated system + of "implicit execution", is itself deprecated and will be + removed in SQLAlchemy 2.0. + .. seealso:: :ref:`dbengine_implicit` - background on "bound metadata" |
