]> git.ipfire.org Git - thirdparty/sqlalchemy/sqlalchemy.git/commit
consider "*" col as textual ordered
authorMike Bayer <mike_mp@zzzcomputing.com>
Wed, 23 Jun 2021 12:50:48 +0000 (08:50 -0400)
committerMike Bayer <mike_mp@zzzcomputing.com>
Wed, 23 Jun 2021 13:49:11 +0000 (09:49 -0400)
commitcdd041ea60628b2f4fd7f7da562aa19bdb15c206
tree9f21a38990ec736a2d76d3df5dd4fab265326879
parent2f875a4b7925742b53dd8cfda1476f7f30a18f5d
consider "*" col as textual ordered

Fixed old issue where a :func:`_sql.select()` made against the token "*",
which then yielded exactly one column, would fail to correctly organize the
``cursor.description`` column name into the keys of the result object.

Fixes: #6665
Change-Id: Ie8c00f62998972ad4a19a750d2642d00fde006f6
doc/build/changelog/unreleased_14/6665.rst [new file with mode: 0644]
lib/sqlalchemy/sql/compiler.py
test/sql/test_resultset.py