]> 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:23:14 +0000 (09:23 -0500)
commit4f054550b768985f1c3393e46e0fc26bfefeeaf6
tree951bccee1e64cb5d1de5c3581a055ca2220b993a
parent6448903b5287801aaefbf82b5fa108403d743e8f
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
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