From: Mike Bayer Date: Sat, 30 Jun 2018 22:30:25 +0000 (-0400) Subject: - add "leaks memory" to documented issues w/ mysqlconnector, X-Git-Tag: rel_1_3_0b1~146 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=c7d364b385e6c4605c50d0ee9264dfac0bc84dde;p=thirdparty%2Fsqlalchemy%2Fsqlalchemy.git - add "leaks memory" to documented issues w/ mysqlconnector, references #4296 Change-Id: I5b663d3444d3732a83a32443c128faffe62f11d9 --- 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.