that quoting should be applied in %(name)s under with_hint.
series as well. For changes that are specific to 1.0 with an emphasis
on compatibility concerns, see :doc:`/changelog/migration_10`.
+ .. change::
+ :tags: bug, oracle
+
+ An alias name will be properly quoted when referred to using the
+ ``%(name)s`` token inside the :meth:`.Select.with_hint` method.
+ Previously, the Oracle backend hadn't implemented this quoting.
+
.. change::
:tags: feature, oracle
:tickets: 3220
"""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(