diff options
| author | Mike Bayer <mike_mp@zzzcomputing.com> | 2007-08-10 23:24:06 +0000 |
|---|---|---|
| committer | Mike Bayer <mike_mp@zzzcomputing.com> | 2007-08-10 23:24:06 +0000 |
| commit | b852fcbce0204fb8edcb7fda9605824a1193e685 (patch) | |
| tree | fb617c025cc37b7c7dce83c1145585cadad5af35 /test/sql/quote.py | |
| parent | b01c63280e16cd549601fb91393acbff3695821a (diff) | |
| download | sqlalchemy-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.py | 4 |
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, |
