From ebaebfb2327a82240837778797bfffc60a7d6e7c Mon Sep 17 00:00:00 2001 From: Mike Bayer Date: Sun, 22 Jan 2012 19:25:41 -0500 Subject: [PATCH] - [bug] Dropped the "30 char" limit on pymssql, based on reports that it's doing things better these days. pymssql hasn't been well tested and as the DBAPI is in flux it's still not clear what the status is on this driver and how SQLAlchemy's implementation should adapt. [ticket:2347] --- CHANGES | 8 ++++++++ lib/sqlalchemy/dialects/mssql/pymssql.py | 1 - 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/CHANGES b/CHANGES index 983aa82d67..402ef7b5c7 100644 --- a/CHANGES +++ b/CHANGES @@ -81,6 +81,14 @@ CHANGES seem to be possible yet with pyodbc at least. [ticket:2340] + - [bug] Dropped the "30 char" limit on pymssql, + based on reports that it's doing things + better these days. pymssql hasn't been + well tested and as the DBAPI is in flux + it's still not clear what the status + is on this driver and how SQLAlchemy's + implementation should adapt. [ticket:2347] + - Py3K - [bug] Fixed inappropriate usage of util.py3k flag and renamed it to util.py3k_warning, since diff --git a/lib/sqlalchemy/dialects/mssql/pymssql.py b/lib/sqlalchemy/dialects/mssql/pymssql.py index 9a68daf432..9cc42c093b 100644 --- a/lib/sqlalchemy/dialects/mssql/pymssql.py +++ b/lib/sqlalchemy/dialects/mssql/pymssql.py @@ -51,7 +51,6 @@ class _MSNumeric_pymssql(sqltypes.Numeric): class MSDialect_pymssql(MSDialect): supports_sane_rowcount = False - max_identifier_length = 30 driver = 'pymssql' colspecs = util.update_copy( -- 2.47.2