diff options
author | Mike Bayer <mike_mp@zzzcomputing.com> | 2014-12-04 19:45:14 -0500 |
---|---|---|
committer | Mike Bayer <mike_mp@zzzcomputing.com> | 2014-12-04 19:45:14 -0500 |
commit | 60174146410d4ce2a17faa76cd981f558490db92 (patch) | |
tree | 363e8e070377aadc210508ebd15c5fa78a494594 /test/sql/test_compiler.py | |
parent | e46c71b4198ee9811ea851dbe037f19a74af0b08 (diff) | |
download | sqlalchemy-60174146410d4ce2a17faa76cd981f558490db92.tar.gz |
- the refactor of the visit_alias() method in Oracle revealed
that quoting should be applied in %(name)s under with_hint.
Diffstat (limited to 'test/sql/test_compiler.py')
-rw-r--r-- | test/sql/test_compiler.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/sql/test_compiler.py b/test/sql/test_compiler.py index 9e99a947b..428fc8986 100644 --- a/test/sql/test_compiler.py +++ b/test/sql/test_compiler.py @@ -2440,7 +2440,7 @@ class SelectTest(fixtures.TestBase, AssertsCompiledSQL): """SELECT /*+ "QuotedName" idx1 */ "QuotedName".col1 """ """FROM "QuotedName" WHERE "QuotedName".col1 > :col1_1"""), (s7, oracle_d, - """SELECT /*+ SomeName idx1 */ "SomeName".col1 FROM """ + """SELECT /*+ "SomeName" idx1 */ "SomeName".col1 FROM """ """"QuotedName" "SomeName" WHERE "SomeName".col1 > :col1_1"""), ]: self.assert_compile( |