]> git.ipfire.org Git - thirdparty/sqlalchemy/sqlalchemy.git/commitdiff
reflected 'mediumint' type
authorMike Bayer <mike_mp@zzzcomputing.com>
Fri, 11 Aug 2006 21:37:55 +0000 (21:37 +0000)
committerMike Bayer <mike_mp@zzzcomputing.com>
Fri, 11 Aug 2006 21:37:55 +0000 (21:37 +0000)
CHANGES
lib/sqlalchemy/databases/mysql.py

diff --git a/CHANGES b/CHANGES
index de8aa22cefb10cc02371504371eed03ff2375be1..3628b70c23824efd5985d0156e5cae62ba041e1c 100644 (file)
--- a/CHANGES
+++ b/CHANGES
@@ -18,7 +18,8 @@ reflection.
 overflow counter should only be decremented if the connection actually
 succeeded.  added a test script to attempt testing this.
 - fixed mysql reflection of default values to be PassiveDefault
-- added reflected 'tinyint' type to MS-SQL [ticket:263]
+- added reflected 'tinyint', 'mediumint' type to MS-SQL [ticket:263], 
+[ticket:264]
 - SingletonThreadPool has a size and does a cleanup pass, so that 
 only a given number of thread-local connections stay around (needed
 for sqlite applications that dispose of threads en masse)
index 2ce7e98259af1c3d4a9a22554f5aef35d48cd76e..df661daac27650bb879d959bd666cd77437056a1 100644 (file)
@@ -215,6 +215,7 @@ colspecs = {
 ischema_names = {
     'bigint' : MSBigInteger,
     'int' : MSInteger,
+    'mediumint' : MSInteger,
     'smallint' : MSSmallInteger,
     'tinyint' : MSSmallInteger, 
     'varchar' : MSString,