From c7d364b385e6c4605c50d0ee9264dfac0bc84dde Mon Sep 17 00:00:00 2001 From: Mike Bayer Date: Sat, 30 Jun 2018 18:30:25 -0400 Subject: [PATCH] - add "leaks memory" to documented issues w/ mysqlconnector, references #4296 Change-Id: I5b663d3444d3732a83a32443c128faffe62f11d9 --- lib/sqlalchemy/dialects/mysql/mysqlconnector.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/lib/sqlalchemy/dialects/mysql/mysqlconnector.py b/lib/sqlalchemy/dialects/mysql/mysqlconnector.py index f7b3bd670a..1ead8aaf50 100644 --- a/lib/sqlalchemy/dialects/mysql/mysqlconnector.py +++ b/lib/sqlalchemy/dialects/mysql/mysqlconnector.py @@ -25,6 +25,9 @@ if possible; as of June 27, 2018: or text with no discernible pattern, so the dialect must test these individually and attempt to decode +* has been observed to leak interpreter memory (likely at the C code level) + under scenarios that do not leak memory when using mysqlclient + * Under Python 2, the driver does not support SQL statements that contain non-ascii characters within the SQL text, making it impossible to support schema objects with non-ascii names; an ascii encoding error is raised. -- 2.47.2