summaryrefslogtreecommitdiff
path: root/test/sql/quote.py
diff options
context:
space:
mode:
authorMike Bayer <mike_mp@zzzcomputing.com>2007-08-10 23:24:06 +0000
committerMike Bayer <mike_mp@zzzcomputing.com>2007-08-10 23:24:06 +0000
commitb852fcbce0204fb8edcb7fda9605824a1193e685 (patch)
treefb617c025cc37b7c7dce83c1145585cadad5af35 /test/sql/quote.py
parentb01c63280e16cd549601fb91393acbff3695821a (diff)
downloadsqlalchemy-b852fcbce0204fb8edcb7fda9605824a1193e685.tar.gz
- oracle reflection of case-sensitive names all fixed up
- other unit tests corrected for oracle
Diffstat (limited to 'test/sql/quote.py')
-rw-r--r--test/sql/quote.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/test/sql/quote.py b/test/sql/quote.py
index eb0239124..9791bf946 100644
--- a/test/sql/quote.py
+++ b/test/sql/quote.py
@@ -107,7 +107,9 @@ class QuoteTest(PersistTest):
x = select([sql.literal_column("'FooCol'").label("SomeLabel")], from_obj=[table])
x = x.select()
assert str(x) == '''SELECT "SomeLabel" \nFROM (SELECT 'FooCol' AS "SomeLabel" \nFROM "ImATable")'''
-
+
+ # oracle doesn't support non-case-sensitive until ticket #726 is fixed
+ @testing.unsupported('oracle')
def testlabelsnocase(self):
metadata = MetaData()
table1 = Table('SomeCase1', metadata,