literal_binds not passed through for crud

Issue #3643 resolved
Mike Bayer repo owner created an issue
>>> 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.

Comments (2)

  1. Log in to comment