diff options
author | mike bayer <mike_mp@zzzcomputing.com> | 2021-11-09 23:56:12 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@ci3.zzzcomputing.com> | 2021-11-09 23:56:12 +0000 |
commit | d42207c9daeead926c33fa4da4bf1dddcc8d7016 (patch) | |
tree | 4501385d5b63e53f1a0a817007191855f99c5c15 /doc | |
parent | 53bed05b2768883aab1ef64427f34ddc49fb5fdc (diff) | |
parent | 89661c1a218b7117c1835698dbb81836e72015ae (diff) | |
download | sqlalchemy-d42207c9daeead926c33fa4da4bf1dddcc8d7016.tar.gz |
Merge "set within_columns_clause=False for all sub-elements of select()" into main
Diffstat (limited to 'doc')
-rw-r--r-- | doc/build/changelog/unreleased_14/7269.rst | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/doc/build/changelog/unreleased_14/7269.rst b/doc/build/changelog/unreleased_14/7269.rst new file mode 100644 index 000000000..6bbd12605 --- /dev/null +++ b/doc/build/changelog/unreleased_14/7269.rst @@ -0,0 +1,11 @@ +.. change:: + :tags: bug, sql + :tickets: 7269 + + Fixed issue where using the feature of using a string label for ordering or + grouping described at :ref:`tutorial_order_by_label` would fail to function + correctly if used on a :class:`.CTE` construct, when the CTE were embedded + inside of an enclosing :class:`_sql.Select` statement that itself was set + up as a scalar subquery. + + |