diff options
Diffstat (limited to 'test/dialect/test_postgresql.py')
-rw-r--r-- | test/dialect/test_postgresql.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/test/dialect/test_postgresql.py b/test/dialect/test_postgresql.py index 952f633ae..fbbc394c9 100644 --- a/test/dialect/test_postgresql.py +++ b/test/dialect/test_postgresql.py @@ -113,6 +113,7 @@ class CompileTest(TestBase, AssertsCompiledSQL): for field in 'year', 'month', 'day', 'epoch', 'hour': for expr, compiled_expr in [ + ( t.c.col1, "t.col1 :: timestamp" ), ( t.c.col2, "t.col2 :: date" ), ( t.c.col3, "t.col3 :: time" ), |