]> git.ipfire.org Git - thirdparty/sqlalchemy/sqlalchemy.git/commit
- Repeat expressions in the columns clause of a select
authorMike Bayer <mike_mp@zzzcomputing.com>
Tue, 20 Oct 2009 16:56:15 +0000 (16:56 +0000)
committerMike Bayer <mike_mp@zzzcomputing.com>
Tue, 20 Oct 2009 16:56:15 +0000 (16:56 +0000)
commit1294532109442bbc07facc47315beab5537de156
treeff4a427e849baadb499cf989885f012587f77c6b
parentec11fc289cfc565957918069a09558d7f4ffcbd9
- Repeat expressions in the columns clause of a select
are deduped based on the identity of each clause element,
not the actual string.  This allows positional
elements to render correctly even if they all render
identically, such as "qmark" style bind parameters.
[ticket:1574]
CHANGES
lib/sqlalchemy/sql/compiler.py
test/sql/test_select.py