From ba5cbf9366e9b2c5ed8e27e91815d7a2c3b63e41 Mon Sep 17 00:00:00 2001 From: Mike Bayer Date: Sun, 15 Nov 2020 16:58:50 -0500 Subject: correct for "autocommit" deprecation warning Ensure no autocommit warnings occur internally or within tests. Also includes fixes for SQL Server full text tests which apparently have not been working at all for a long time, as it used long removed APIs. CI has not had fulltext running for some years and is now installed. Change-Id: Id806e1856c9da9f0a9eac88cebc7a94ecc95eb96 --- lib/sqlalchemy/sql/schema.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'lib/sqlalchemy/sql') diff --git a/lib/sqlalchemy/sql/schema.py b/lib/sqlalchemy/sql/schema.py index 4b19ff02a..b5e45c18d 100644 --- a/lib/sqlalchemy/sql/schema.py +++ b/lib/sqlalchemy/sql/schema.py @@ -2258,10 +2258,10 @@ class DefaultGenerator(SchemaItem): "or in the ORM by the :meth:`.Session.execute` method of " ":class:`.Session`.", ) - def execute(self, bind=None, **kwargs): + def execute(self, bind=None): if bind is None: bind = _bind_or_error(self) - return bind.execute(self, **kwargs) + return bind._execute_default(self, (), util.EMPTY_DICT) def _execute_on_connection( self, connection, multiparams, params, execution_options -- cgit v1.2.1