]> git.ipfire.org Git - thirdparty/sqlalchemy/sqlalchemy.git/commit
`ValuesBase.values` inconsistency fix
authorAubrey Stark-Toller <aubrey@kleetope.net>
Fri, 5 Jan 2018 20:06:23 +0000 (15:06 -0500)
committerMike Bayer <mike_mp@zzzcomputing.com>
Fri, 12 Jan 2018 16:30:05 +0000 (11:30 -0500)
commit8e112ad2cc45910a8ca860f32a3a4e138bae2e73
treecd776961d9e5025308dfb1489335887219a736a1
parent386d52aeb849c925a30b5ff4d73250d366d25fff
`ValuesBase.values` inconsistency fix

Fixed bug in :meth:`.Insert.values` where using the "multi-values"
format in combination with :class:`.Column` objects as keys rather
than strings would fail.   Pull request courtesy Aubrey Stark-Toller.

Change-Id: I9d3b40b5950df8f5bfdc8b1d22f9c3afb277f17f
Pull-request: https://github.com/zzzeek/sqlalchemy/pull/412
Fixes: #4162
(cherry picked from commit ab2165e6d6e9b33f772e9eb3668b3e32175093c4)
doc/build/changelog/unreleased_11/4162.rst [new file with mode: 0644]
lib/sqlalchemy/sql/crud.py
test/sql/test_insert.py