From b59f87e6185b26e286147316c20022df4d729f77 Mon Sep 17 00:00:00 2001 From: Mike Bayer Date: Sun, 29 Dec 2019 02:09:04 -0500 Subject: De-implement non-working / testing copy_internals from dml The DML constructs will need to have traverse_internals symbols set up; as there are currently non-working /non-used _copy_internals methods, just remove these for now as they are unlikely to be working correctly in any case. Additionally remove an errant "return" statement noted on the same issue from the MySQL dialect. Fixes: #5060 Change-Id: I289005af04192e4c755d53244b1ea0711c266c6c --- lib/sqlalchemy/dialects/mysql/base.py | 2 -- 1 file changed, 2 deletions(-) (limited to 'lib/sqlalchemy/dialects') diff --git a/lib/sqlalchemy/dialects/mysql/base.py b/lib/sqlalchemy/dialects/mysql/base.py index 81e80fdbc..3dff14545 100644 --- a/lib/sqlalchemy/dialects/mysql/base.py +++ b/lib/sqlalchemy/dialects/mysql/base.py @@ -2969,8 +2969,6 @@ class MySQLDialect(default.DefaultDialect): raise exc.NoSuchTableError(full_name) return row[1].strip() - return sql - def _describe_table(self, connection, table, charset=None, full_name=None): """Run DESCRIBE for a ``Table`` and return processed rows.""" -- cgit v1.2.1