summaryrefslogtreecommitdiff
path: root/test/dialect/test_postgresql.py
diff options
context:
space:
mode:
authorMike Bayer <mike_mp@zzzcomputing.com>2010-03-09 14:32:38 -0500
committerMike Bayer <mike_mp@zzzcomputing.com>2010-03-09 14:32:38 -0500
commite9b059f782487ea375706dc32c5c79b8340df19a (patch)
tree08948c9864035a5bdb26ab4c63484e017f22edfc /test/dialect/test_postgresql.py
parent969c04860fa5b9b3fc33253a2e4a706a5ddb16f6 (diff)
downloadsqlalchemy-e9b059f782487ea375706dc32c5c79b8340df19a.tar.gz
base tests pass
Diffstat (limited to 'test/dialect/test_postgresql.py')
-rw-r--r--test/dialect/test_postgresql.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/dialect/test_postgresql.py b/test/dialect/test_postgresql.py
index b002e7f19..8358825c4 100644
--- a/test/dialect/test_postgresql.py
+++ b/test/dialect/test_postgresql.py
@@ -106,7 +106,7 @@ class CompileTest(TestBase, AssertsCompiledSQL):
self.assert_compile(schema.CreateIndex(idx),
"CREATE INDEX test_idx1 ON testtbl (data) WHERE data > 5 AND data < 10", dialect=postgresql.dialect())
-
+
def test_extract(self):
t = table('t', column('col1', DateTime), column('col2', Date), column('col3', Time),
column('col4', postgresql.INTERVAL)