From b852fcbce0204fb8edcb7fda9605824a1193e685 Mon Sep 17 00:00:00 2001 From: Mike Bayer Date: Fri, 10 Aug 2007 23:24:06 +0000 Subject: - oracle reflection of case-sensitive names all fixed up - other unit tests corrected for oracle --- test/sql/quote.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'test/sql/quote.py') 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, -- cgit v1.2.1