]> git.ipfire.org Git - thirdparty/sqlalchemy/sqlalchemy.git/commit
Pass **kw to bound params in multi values
authorMike Bayer <mike_mp@zzzcomputing.com>
Wed, 28 Dec 2016 21:32:53 +0000 (16:32 -0500)
committerMike Bayer <mike_mp@zzzcomputing.com>
Mon, 9 Jan 2017 22:37:25 +0000 (17:37 -0500)
commit4fec72f178f0da016301a0d12ad9abe02cc2b62a
tree1c5a203d309bb7162c5a844f7d5ad62ee94c071f
parente6eefc0c5e946f10cb31264d71d6f1987a3f96e8
Pass **kw to bound params in multi values

Fixed bug where literal_binds compiler flag was not honored by the
:class:`.Insert` construct for the "multiple values" feature; the
subsequent values are now rendered as literals.

Change-Id: I81ac358fd59995885d482e7571620090210865d2
Fixes: #3880
doc/build/changelog/changelog_11.rst
lib/sqlalchemy/sql/crud.py
test/sql/test_insert.py