diff options
| author | Mike Bayer <mike_mp@zzzcomputing.com> | 2012-01-22 19:25:41 -0500 |
|---|---|---|
| committer | Mike Bayer <mike_mp@zzzcomputing.com> | 2012-01-22 19:25:41 -0500 |
| commit | ebaebfb2327a82240837778797bfffc60a7d6e7c (patch) | |
| tree | 3547209880bdc3317ebf6efb0120dfd705704b5a | |
| parent | b4da470d921931d2384fd0bfe72a9ac5c9b9def9 (diff) | |
| download | sqlalchemy-ebaebfb2327a82240837778797bfffc60a7d6e7c.tar.gz | |
- [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]
| -rw-r--r-- | CHANGES | 8 | ||||
| -rw-r--r-- | lib/sqlalchemy/dialects/mssql/pymssql.py | 1 |
2 files changed, 8 insertions, 1 deletions
@@ -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 9a68daf43..9cc42c093 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( |
