]> git.ipfire.org Git - thirdparty/sqlalchemy/sqlalchemy.git/commitdiff
(no commit message)
authorRick Morrison <rickmorrison@gmail.com>
Wed, 6 Jun 2007 17:13:13 +0000 (17:13 +0000)
committerRick Morrison <rickmorrison@gmail.com>
Wed, 6 Jun 2007 17:13:13 +0000 (17:13 +0000)
lib/sqlalchemy/databases/mssql.py

index 46fe990734eae8189cb3a70032a73a0e9377e155..1cadbd14d01847fd634bab1c6b3c9e09d3f9071c 100644 (file)
@@ -573,6 +573,9 @@ class MSSQLDialect_pymssql(MSSQLDialect):
     def supports_sane_rowcount(self):
         return True
 
+    def max_identifier_length(self):
+        return 30
+
     def do_rollback(self, connection):
         # pymssql throws an error on repeated rollbacks. Ignore it.
         # TODO: this is normal behavior for most DBs.  are we sure we want to ignore it ?