]> git.ipfire.org Git - thirdparty/sqlalchemy/sqlalchemy.git/commit
Propagate kwargs for mysql concat, match
authorMike Bayer <mike_mp@zzzcomputing.com>
Mon, 13 Nov 2017 14:21:48 +0000 (09:21 -0500)
committerMike Bayer <mike_mp@zzzcomputing.com>
Mon, 13 Nov 2017 14:24:02 +0000 (09:24 -0500)
commita616c0566d69cc17645c73f3fe51c5d7cceb1e06
treed26ccf2c7eb2dc74ae050676ec9d655cde33d3aa
parentbccfc2181d7be8e939f27baf9c8dfd33056a36ee
Propagate kwargs for mysql concat, match

Fixed bug where the MySQL "concat" and "match" operators failed to
propagate kwargs to the left and right expressions, causing compiler
options such as "literal_binds" to fail.

Also adds non-interpreted **kw for visit_create_index, visit_typeclause

Change-Id: Iaf54ac18949cc6a54f50678125f010b4f12c5673
Fixes: #4136
(cherry picked from commit 4f054550b768985f1c3393e46e0fc26bfefeeaf6)
doc/build/changelog/unreleased_11/ticket_4136.rst [new file with mode: 0644]
lib/sqlalchemy/dialects/mysql/base.py
test/dialect/mysql/test_compiler.py