]> git.ipfire.org Git - thirdparty/sqlalchemy/sqlalchemy.git/commitdiff
- [bug] Dropped the "30 char" limit on pymssql,
authorMike Bayer <mike_mp@zzzcomputing.com>
Mon, 23 Jan 2012 00:25:41 +0000 (19:25 -0500)
committerMike Bayer <mike_mp@zzzcomputing.com>
Mon, 23 Jan 2012 00:25:41 +0000 (19:25 -0500)
    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
lib/sqlalchemy/dialects/mssql/pymssql.py

diff --git a/CHANGES b/CHANGES
index 983aa82d67e403aedef2c12bdb7399a8ca27ecbf..402ef7b5c7985fed4934aaebc0d449cf119edd86 100644 (file)
--- 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 
index 9a68daf432764c4b09ba85bd8596759c1ae91cb5..9cc42c093b33a51e1c050e05dfe380a426a50d62 100644 (file)
@@ -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(