diff options
author | Tim Tate <timttate@gmail.com> | 2016-02-02 15:20:02 -0800 |
---|---|---|
committer | Tim Tate <timttate@gmail.com> | 2016-02-02 15:40:07 -0800 |
commit | c9b03fa8afd52646aba8c59fc038330eeee6db60 (patch) | |
tree | 71ee7ebc3c7b226b7ddf226da4000683e30255d8 /lib/sqlalchemy/sql/compiler.py | |
parent | 9149fd062b8b5f4d84902b4581288ab991fd25ce (diff) | |
download | sqlalchemy-pr/232.tar.gz |
fix passing literal_binds flag through for update and insertpr/232
Diffstat (limited to 'lib/sqlalchemy/sql/compiler.py')
-rw-r--r-- | lib/sqlalchemy/sql/compiler.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/sqlalchemy/sql/compiler.py b/lib/sqlalchemy/sql/compiler.py index 2431e53cc..993956ef0 100644 --- a/lib/sqlalchemy/sql/compiler.py +++ b/lib/sqlalchemy/sql/compiler.py @@ -2045,7 +2045,7 @@ class SQLCompiler(Compiled): text += " " + extra_from_text if update_stmt._whereclause is not None: - t = self.process(update_stmt._whereclause) + t = self.process(update_stmt._whereclause, **kw) if t: text += " WHERE " + t |