[Sqlalchemy-tickets] Issue #3643: literal_binds not passed through for crud (zzzeek/sqlalchemy)
Brought to you by:
zzzeek
|
From: Mike B. <iss...@bi...> - 2016-02-03 15:58:21
|
New issue 3643: literal_binds not passed through for crud https://bitbucket.org/zzzeek/sqlalchemy/issues/3643/literal_binds-not-passed-through-for-crud Mike Bayer: ``` #!python >>> import sqlalchemy as sa >>> >>> stmt = sa.update(sa.table('x', sa.column('q', sa.Integer))).values(q=5) >>> print stmt.compile(compile_kwargs={"literal_binds": True}) UPDATE x SET q=:q ``` see https://github.com/zzzeek/sqlalchemy/pull/232/files. |