]> git.ipfire.org Git - thirdparty/sqlalchemy/sqlalchemy.git/commit
dont mis-render value from previous loop iteration
authorMike Bayer <mike_mp@zzzcomputing.com>
Thu, 19 Oct 2023 15:21:26 +0000 (11:21 -0400)
committerMike Bayer <mike_mp@zzzcomputing.com>
Thu, 19 Oct 2023 15:24:32 +0000 (11:24 -0400)
commit9fe7c291921540df9173820d3a06b949d7a3d949
tree4a8e33dc3ba165ce8ea601a4def79378662bd1cc
parentefe4025c068d6746637db362245ab88ce7dfe785
dont mis-render value from previous loop iteration

Fixed issue where using the same bound parameter more than once with
``literal_execute=True`` in some combinations with other literal rendering
parameters would cause the wrong values to render due to an iteration
issue.

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