summaryrefslogtreecommitdiff
path: root/test/sql
diff options
context:
space:
mode:
authorMike Bayer <mike_mp@zzzcomputing.com>2006-08-31 23:26:30 +0000
committerMike Bayer <mike_mp@zzzcomputing.com>2006-08-31 23:26:30 +0000
commitb02b64675e0c10ecf10e9e0ee1b34cc6ec412d37 (patch)
tree72fb5b59b0f2f61ccf7fb1b2e2a5c8d82d4c017f /test/sql
parente168ef63a9a1306232b4a3c87d6264f2263c9e15 (diff)
downloadsqlalchemy-b02b64675e0c10ecf10e9e0ee1b34cc6ec412d37.tar.gz
pg formats sequence name, more quote test fixes
Diffstat (limited to 'test/sql')
-rw-r--r--test/sql/quote.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/sql/quote.py b/test/sql/quote.py
index 2d5132fb0..6b38accbd 100644
--- a/test/sql/quote.py
+++ b/test/sql/quote.py
@@ -37,11 +37,11 @@ class QuoteTest(PersistTest):
{'d123':2,'u123':2,'MixedCase':3},
{'d123':4,'u123':3,'MixedCase':2})
- res1 = select([table1.c.lowercase, table1.c.UPPERCASE, table1.c.MixedCase, table1.c.ASC]).execute().fetchall()
+ res1 = select([table1.c.lowercase, table1.c.UPPERCASE, table1.c.MixedCase, table1.c.a123]).execute().fetchall()
print res1
assert(res1==[(1,2,3,4),(2,2,3,4),(4,3,2,1)])
- res2 = select([table2.c.desc, table2.c.Union, table2.c.MixedCase]).execute().fetchall()
+ res2 = select([table2.c.d123, table2.c.u123, table2.c.MixedCase]).execute().fetchall()
print res2
assert(res2==[(1,2,3),(2,2,3),(4,3,2)])