]> git.ipfire.org Git - thirdparty/sqlalchemy/sqlalchemy.git/commit
Ensure all visit_sequence accepts **kw args
authorMike Bayer <mike_mp@zzzcomputing.com>
Wed, 4 Apr 2018 17:36:28 +0000 (13:36 -0400)
committerMike Bayer <mike_mp@zzzcomputing.com>
Wed, 4 Apr 2018 20:46:16 +0000 (16:46 -0400)
commitb4eb29253cb29a069973503f36d1103d4a18311c
treed74797804981a1234b993569fa426e78ba7a6e00
parent9f986ce10c6755af3f347a56f9ea03e0e2c5943e
Ensure all visit_sequence accepts **kw args

Fixed issue where the compilation of an INSERT statement with the
"literal_binds" option that also uses an explicit sequence and "inline"
generation, as on Postgresql and Oracle, would fail to accommodate the
extra keyword argument within the sequence processing routine.

Change-Id: Ibdab7d340aea7429a210c9535ccf1a3e85f074fb
Fixes: #4231
doc/build/changelog/unreleased_12/4231.rst [new file with mode: 0644]
lib/sqlalchemy/dialects/firebird/base.py
lib/sqlalchemy/dialects/oracle/base.py
lib/sqlalchemy/dialects/postgresql/base.py
lib/sqlalchemy/sql/compiler.py
lib/sqlalchemy/testing/suite/test_sequence.py
test/sql/test_compiler.py