]> git.ipfire.org Git - thirdparty/sqlalchemy/sqlalchemy.git/commit
update execute() arg formats in modules and tests
authorMike Bayer <mike_mp@zzzcomputing.com>
Wed, 6 Jan 2021 15:43:19 +0000 (10:43 -0500)
committerMike Bayer <mike_mp@zzzcomputing.com>
Fri, 15 Jan 2021 18:04:58 +0000 (13:04 -0500)
commitebbbac0a76b3327a829864afb26ee1b7ff1dc780
treeb086b06760255bc0bb76e51624a5e3772bc4cc3d
parent6be06d85e598e4fda6f3d35084e1c5cccb30cee5
update execute() arg formats in modules and tests

continuing with producing a SQLAlchemy 1.4.0b2 that internally
does not emit any of its own 2.0 deprecation warnings,
migrate the *args and **kwargs passed to execute() methods
that now must be a single list or dictionary.

Alembic 1.5 is again waiting on this internal consistency to
be present so that it can pass all tests with no 2.0
deprecation warnings.

Change-Id: If6b792e57c8c5dff205419644ab68e631575a2fa
37 files changed:
lib/sqlalchemy/dialects/oracle/base.py
lib/sqlalchemy/dialects/postgresql/base.py
lib/sqlalchemy/dialects/postgresql/provision.py
lib/sqlalchemy/orm/__init__.py
lib/sqlalchemy/testing/fixtures.py
lib/sqlalchemy/testing/suite/test_insert.py
lib/sqlalchemy/testing/suite/test_select.py
lib/sqlalchemy/testing/suite/test_sequence.py
lib/sqlalchemy/testing/suite/test_update_delete.py
lib/sqlalchemy/testing/warnings.py
test/dialect/mssql/test_query.py
test/dialect/mssql/test_types.py
test/dialect/oracle/test_dialect.py
test/dialect/oracle/test_reflection.py
test/dialect/oracle/test_types.py
test/dialect/postgresql/test_dialect.py
test/dialect/postgresql/test_query.py
test/dialect/postgresql/test_types.py
test/dialect/test_sqlite.py
test/engine/test_ddlevents.py
test/engine/test_deprecations.py
test/engine/test_execute.py
test/engine/test_transaction.py
test/orm/test_deprecations.py
test/orm/test_eager_relations.py
test/orm/test_expire.py
test/orm/test_lazy_relations.py
test/orm/test_naturalpks.py
test/sql/test_defaults.py
test/sql/test_deprecations.py
test/sql/test_functions.py
test/sql/test_insert_exec.py
test/sql/test_query.py
test/sql/test_resultset.py
test/sql/test_returning.py
test/sql/test_type_expressions.py
test/sql/test_types.py