diff options
author | Mike Bayer <mike_mp@zzzcomputing.com> | 2020-10-29 12:38:42 -0400 |
---|---|---|
committer | Mike Bayer <mike_mp@zzzcomputing.com> | 2020-10-30 20:22:13 -0400 |
commit | 0718add3714451c1ae8ca00215ffb6c0fabdf366 (patch) | |
tree | c472fbc4bb6052a87980ee93f5471fdff93e2338 /lib/sqlalchemy/sql/compiler.py | |
parent | 10851b002844fa4f9de7af92dbb15cb1133497eb (diff) | |
download | sqlalchemy-0718add3714451c1ae8ca00215ffb6c0fabdf366.tar.gz |
Deprecate bind args, execute() methods that were missed
in particular text(bind), DDL.execute().
Change-Id: Ie85ae9f61219182f5649f68e5f52b4923843199c
Diffstat (limited to 'lib/sqlalchemy/sql/compiler.py')
-rw-r--r-- | lib/sqlalchemy/sql/compiler.py | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/lib/sqlalchemy/sql/compiler.py b/lib/sqlalchemy/sql/compiler.py index 10499975c..3819d1b9e 100644 --- a/lib/sqlalchemy/sql/compiler.py +++ b/lib/sqlalchemy/sql/compiler.py @@ -447,9 +447,6 @@ class Compiled(object): :param statement: :class:`_expression.ClauseElement` to be compiled. - :param bind: Optional Engine or Connection to compile this - statement against. - :param schema_translate_map: dictionary of schema names to be translated when forming the resultant SQL |