From: Mike Bayer Date: Sat, 2 Jun 2007 20:33:15 +0000 (+0000) Subject: pg test wasnt really working with that particular default..its a TODO X-Git-Tag: rel_0_3_8 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=cbc33de2fe6c0088f642c6866e58ee268eb52e31;p=thirdparty%2Fsqlalchemy%2Fsqlalchemy.git pg test wasnt really working with that particular default..its a TODO --- diff --git a/test/engine/reflection.py b/test/engine/reflection.py index 76dd849475..ccb6f83427 100644 --- a/test/engine/reflection.py +++ b/test/engine/reflection.py @@ -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"