]> git.ipfire.org Git - thirdparty/sqlalchemy/sqlalchemy.git/commit
- Fixed regression in 1.0 where new feature of using "executemany"
authorMike Bayer <mike_mp@zzzcomputing.com>
Mon, 19 Oct 2015 16:17:37 +0000 (12:17 -0400)
committerMike Bayer <mike_mp@zzzcomputing.com>
Mon, 19 Oct 2015 16:17:37 +0000 (12:17 -0400)
commit1e0afd584c12ff624259f03d8a6ab5f892c2c0cf
tree25305e2c7bc6ae62e19297d26994503fd2b99582
parent322f8f18f51985c75b78b425a3a768b2529410ed
- Fixed regression in 1.0 where new feature of using "executemany"
for UPDATE statements in the ORM (e.g. :ref:`feature_updatemany`)
would break on Postgresql and other RETURNING backends
when using server-side version generation
schemes, as the server side value is retrieved via RETURNING which
is not supported with executemany.
fixes #3556
doc/build/changelog/changelog_10.rst
lib/sqlalchemy/orm/persistence.py
test/orm/test_versioning.py