]> git.ipfire.org Git - thirdparty/sqlalchemy/sqlalchemy.git/commitdiff
- psycopg2's batch mode isn't the multiple values thing,
authorMike Bayer <mike_mp@zzzcomputing.com>
Wed, 11 Oct 2017 14:27:17 +0000 (10:27 -0400)
committerMike Bayer <mike_mp@zzzcomputing.com>
Wed, 11 Oct 2017 14:28:37 +0000 (10:28 -0400)
it's just batching of statements

Change-Id: Ibb2e154d50ff3d9649822c9e4717ca5a3fd49430

doc/build/changelog/migration_12.rst

index 598435ae81f5145b9b8bb4eae327058c9e10f080..f6ca7f8126fae0987c20ccfbfa8571081feb9cd5 100644 (file)
@@ -1359,8 +1359,8 @@ Support for Batch Mode / Fast Execution Helpers
 The psycopg2 ``cursor.executemany()`` method has been identified as performing
 poorly, particularly with INSERT statements.   To alleviate this, psycopg2
 has added `Fast Execution Helpers <http://initd.org/psycopg/docs/extras.html#fast-execution-helpers>`_
-which rework statements such as INSERT statements into fewer SQL calls with
-multiple VALUES clauses.   SQLAlchemy 1.2 now includes support for these
+which rework statements into fewer server round trips by sending multiple
+DML statements in batch.   SQLAlchemy 1.2 now includes support for these
 helpers to be used transparently whenever the :class:`.Engine` makes use
 of ``cursor.executemany()`` to invoke a statement against multiple parameter
 sets.   The feature is off by default and can be enabled using the