]> 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:18:02 +0000 (12:18 -0400)
commit4f54607923a11669961b53ffe49893e839592164
treeea252668c5c103e94ecaf3cb9f97d2c7131ae62f
parentfa829d0e1b68b99730d7afadc0f47ecee291fbfd
- 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