summaryrefslogtreecommitdiff
path: root/test/sql/quote.py
diff options
context:
space:
mode:
authorMike Bayer <mike_mp@zzzcomputing.com>2007-04-24 21:33:07 +0000
committerMike Bayer <mike_mp@zzzcomputing.com>2007-04-24 21:33:07 +0000
commit49f633b7d11db5a36fa99d53c09620c323374569 (patch)
tree68a576a262a4d2072b9fef8ecf868330ea7f5602 /test/sql/quote.py
parent898034c214dbae0c4f11dbd1301d26147dee42ea (diff)
downloadsqlalchemy-49f633b7d11db5a36fa99d53c09620c323374569.tar.gz
- fix to case() construct to propigate the type of the first
WHEN condition as the return type of the case statement - various unit test tweaks to get oracle working
Diffstat (limited to 'test/sql/quote.py')
-rw-r--r--test/sql/quote.py5
1 files changed, 3 insertions, 2 deletions
diff --git a/test/sql/quote.py b/test/sql/quote.py
index bd8b206d6..5259437fc 100644
--- a/test/sql/quote.py
+++ b/test/sql/quote.py
@@ -49,7 +49,7 @@ class QuoteTest(PersistTest):
meta2 = BoundMetaData(testbase.db)
t2 = Table('WorstCase2', meta2, autoload=True, quote=True)
assert t2.c.has_key('MixedCase')
-
+
def testlabels(self):
table1.insert().execute({'lowercase':1,'UPPERCASE':2,'MixedCase':3,'a123':4},
{'lowercase':2,'UPPERCASE':2,'MixedCase':3,'a123':4},
@@ -77,7 +77,8 @@ class QuoteTest(PersistTest):
assert lcmetadata.case_sensitive is False
assert t1.c.UcCol.case_sensitive is False
assert t2.c.normalcol.case_sensitive is False
-
+
+ @testbase.unsupported('oracle')
def testlabels(self):
"""test the quoting of labels.