summaryrefslogtreecommitdiff
path: root/test/sql
diff options
context:
space:
mode:
authorMike Bayer <mike_mp@zzzcomputing.com>2009-07-13 02:04:54 +0000
committerMike Bayer <mike_mp@zzzcomputing.com>2009-07-13 02:04:54 +0000
commit5503028d8cc404bb28fd5760f5ba6c27cfc37ae2 (patch)
treef66e23eef8e95705a257e5b0e941940411dd34ba /test/sql
parent40772955a58b5013ad3d94b314b61c3979999118 (diff)
downloadsqlalchemy-5503028d8cc404bb28fd5760f5ba6c27cfc37ae2.tar.gz
changed reference to PostgreSQL in docs.rel_0_5_5
Diffstat (limited to 'test/sql')
-rw-r--r--test/sql/test_select.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/sql/test_select.py b/test/sql/test_select.py
index 1d9e531de..f70492fb3 100644
--- a/test/sql/test_select.py
+++ b/test/sql/test_select.py
@@ -1302,7 +1302,7 @@ UNION SELECT mytable.myid FROM mytable WHERE mytable.myid = :myid_2)")
else:
eq_(str(sel), "SELECT casttest.id, casttest.v1, casttest.v2, casttest.ts, CAST(casttest.v1 AS NUMERIC(10, 2)) AS anon_1 \nFROM casttest")
- # first test with Postgres engine
+ # first test with PostgreSQL engine
check_results(postgres.dialect(), ['NUMERIC(10, 2)', 'NUMERIC(12, 9)', 'DATE', 'TEXT', 'VARCHAR(20)'], '%(param_1)s')
# then the Oracle engine