]> git.ipfire.org Git - thirdparty/sqlalchemy/sqlalchemy.git/commitdiff
- FBDate now extends Date instead of DateTime. [ticket:1573]
authorMike Bayer <mike_mp@zzzcomputing.com>
Sun, 6 Dec 2009 01:10:59 +0000 (01:10 +0000)
committerMike Bayer <mike_mp@zzzcomputing.com>
Sun, 6 Dec 2009 01:10:59 +0000 (01:10 +0000)
CHANGES
lib/sqlalchemy/databases/firebird.py

diff --git a/CHANGES b/CHANGES
index 49e02e2aabfb7a6d40caf8ebb1e03f276fd892c7..d0401f6329c25b685278e4effd87b703a8c6cc8c 100644 (file)
--- a/CHANGES
+++ b/CHANGES
@@ -79,7 +79,10 @@ CHANGES
       precedence rules to the "::" operator when applying
       the "timestamp" cast - ensures proper parenthesization.  
       [ticket:1611]
-      
+
+- firebird
+    - FBDate now extends Date instead of DateTime. [ticket:1573]
+    
 - mssql
     - Changed the name of TrustedConnection to 
       Trusted_Connection when constructing pyodbc connect
index 8a8d02d4a1e66f69d728ee7edf6ea82927b7bc97..9a742cae09ec773854c42f87a961505a2f122c85 100644 (file)
@@ -174,7 +174,7 @@ class FBDateTime(sqltypes.DateTime):
         return process
 
 
-class FBDate(sqltypes.DateTime):
+class FBDate(sqltypes.Date):
     """Handle ``DATE`` datatype."""
 
     def get_col_spec(self):