From: Mike Bayer Date: Mon, 23 Jan 2012 00:25:41 +0000 (-0500) Subject: - [bug] Dropped the "30 char" limit on pymssql, X-Git-Tag: rel_0_7_5~34 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=ebaebfb2327a82240837778797bfffc60a7d6e7c;p=thirdparty%2Fsqlalchemy%2Fsqlalchemy.git - [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] --- 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(