From 4c5f80b0217c2d5b778ab2c5c34d431206d7a743 Mon Sep 17 00:00:00 2001 From: Federico Caselli Date: Thu, 13 Apr 2023 22:22:14 +0200 Subject: Improve typing. Correctly pass previously ignored arguments ``insert_before`` and ``insert_after`` in ``batch_alter_column`` Fixes: #1221 Change-Id: I79c9144f3e521fca00a0c32462ae2a69f9f7a032 --- tests/test_mysql.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'tests') diff --git a/tests/test_mysql.py b/tests/test_mysql.py index 2145fd7..92c1819 100644 --- a/tests/test_mysql.py +++ b/tests/test_mysql.py @@ -627,7 +627,7 @@ class MySQLDefaultCompareTest(TestBase): insp = inspect(self.bind) cols = insp.get_columns(t1.name) refl = Table(t1.name, MetaData()) - sqla_compat._reflect_table(insp, refl, None) + sqla_compat._reflect_table(insp, refl) ctx = self.autogen_context["context"] return ctx.impl.compare_server_default( refl.c[cols[0]["name"]], col, rendered, cols[0]["default"] -- cgit v1.2.1