]> git.ipfire.org Git - thirdparty/sqlalchemy/sqlalchemy.git/commitdiff
- [bug] Add BINARY, VARBINARY to types.__all__,
authorMike Bayer <mike_mp@zzzcomputing.com>
Fri, 4 May 2012 21:37:51 +0000 (17:37 -0400)
committerMike Bayer <mike_mp@zzzcomputing.com>
Fri, 4 May 2012 21:37:51 +0000 (17:37 -0400)
    [ticket:2474]

CHANGES
lib/sqlalchemy/types.py

diff --git a/CHANGES b/CHANGES
index 354120a42098a7804b14247184925c742b1298e2..ef1965d18e6ef87e0cb717ab8925ab653af05e64 100644 (file)
--- a/CHANGES
+++ b/CHANGES
@@ -65,6 +65,9 @@ CHANGES
     Connection is closed explicitly before 
     propagating the exception onward normally.
 
+  - [bug] Add BINARY, VARBINARY to types.__all__,
+    [ticket:2474]
+
 - mssql
   - [feature] Added interim create_engine flag
     supports_unicode_binds to PyODBC dialect,
index 512ac6268e7dd7079db8789639cc11ba67b0aed2..aac86d660030216157710a56f6bd478fd34d1d4b 100644 (file)
@@ -14,7 +14,7 @@ For more information see the SQLAlchemy documentation on types.
 __all__ = [ 'TypeEngine', 'TypeDecorator', 'AbstractType', 'UserDefinedType',
             'INT', 'CHAR', 'VARCHAR', 'NCHAR', 'NVARCHAR','TEXT', 'Text',
             'FLOAT', 'NUMERIC', 'REAL', 'DECIMAL', 'TIMESTAMP', 'DATETIME', 
-            'CLOB', 'BLOB', 'BOOLEAN', 'SMALLINT', 'INTEGER', 'DATE', 'TIME',
+            'CLOB', 'BLOB', 'BINARY', 'VARBINARY', 'BOOLEAN', 'SMALLINT', 'INTEGER', 'DATE', 'TIME',
             'String', 'Integer', 'SmallInteger', 'BigInteger', 'Numeric',
             'Float', 'DateTime', 'Date', 'Time', 'LargeBinary', 'Binary',
             'Boolean', 'Unicode', 'MutableType', 'Concatenable',