]> git.ipfire.org Git - thirdparty/sqlalchemy/sqlalchemy.git/commitdiff
pg test wasnt really working with that particular default..its a TODO rel_0_3_8
authorMike Bayer <mike_mp@zzzcomputing.com>
Sat, 2 Jun 2007 20:33:15 +0000 (20:33 +0000)
committerMike Bayer <mike_mp@zzzcomputing.com>
Sat, 2 Jun 2007 20:33:15 +0000 (20:33 +0000)
test/engine/reflection.py

index 76dd849475d5d4756c1d69ebc2e260b427944d31..ccb6f834275adc5885fd6792c79ee4e7776733fa 100644 (file)
@@ -25,8 +25,11 @@ class ReflectionTest(PersistTest):
         if use_string_defaults:
             deftype2 = String
             defval2 = "im a default"
-            deftype3 = DateTime
-            defval3 = '1999-09-09 00:00:00'
+            #deftype3 = DateTime
+            # the colon thing isnt working out for PG reflection just yet
+            #defval3 = '1999-09-09 00:00:00'
+            deftype3 = Date
+            defval3 = '1999-09-09'
         else:
             deftype2, deftype3 = Integer, Integer
             defval2, defval3 = "15", "16"