]> git.ipfire.org Git - thirdparty/sqlalchemy/alembic.git/commit
- Fixed bug where :meth:`.Operations.bulk_insert` would not function
authorMike Bayer <mike_mp@zzzcomputing.com>
Sat, 8 Mar 2014 05:15:46 +0000 (00:15 -0500)
committerMike Bayer <mike_mp@zzzcomputing.com>
Sat, 8 Mar 2014 05:15:46 +0000 (00:15 -0500)
commit6cc9c976d6c101f03579e4e4821bd6277599191a
treeb9ca63e10bd7dca6c8556ec0735b5f4cb7f87f6a
parent334e04d710f16a04ce4d9ed737ec2d0a02b11de4
- Fixed bug where :meth:`.Operations.bulk_insert` would not function
properly when :meth:`.Operations.inline_literal` values were used,
either in --sql or non-sql mode.    The values will now render
directly in --sql mode.  For compatibility with "online" mode,
a new flag :paramref:`~.Operations.inline_literal.multiparams`
can be set to False which will cause each parameter set to be
compiled and executed with individual INSERT statements.
fixes #179
alembic/ddl/impl.py
alembic/ddl/mssql.py
alembic/operations.py
docs/build/changelog.rst
tests/test_bulk_insert.py