summaryrefslogtreecommitdiff
path: root/lib/sqlalchemy/dialects/postgresql
diff options
context:
space:
mode:
authormike bayer <mike_mp@zzzcomputing.com>2019-10-30 18:18:48 +0000
committerGerrit Code Review <gerrit@bbpush.zzzcomputing.com>2019-10-30 18:18:48 +0000
commitfa26bb01e1cfdfc80985e0bf7cf353aef6106a0d (patch)
treeba5febaba5bd1059ba4eedb528090e7f9616a9a5 /lib/sqlalchemy/dialects/postgresql
parentec5e4f3543cc2896c83c5854cc5c39a80cc11b2f (diff)
parentd36b1f7f03841b9b346a6fd3395dd29333dce588 (diff)
downloadsqlalchemy-fa26bb01e1cfdfc80985e0bf7cf353aef6106a0d.tar.gz
Merge "Use simple growth scale with any max size for BufferedRowResultProxy"
Diffstat (limited to 'lib/sqlalchemy/dialects/postgresql')
-rw-r--r--lib/sqlalchemy/dialects/postgresql/psycopg2.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/sqlalchemy/dialects/postgresql/psycopg2.py b/lib/sqlalchemy/dialects/postgresql/psycopg2.py
index 1a4db1108..14d49ee15 100644
--- a/lib/sqlalchemy/dialects/postgresql/psycopg2.py
+++ b/lib/sqlalchemy/dialects/postgresql/psycopg2.py
@@ -137,7 +137,8 @@ The following DBAPI-specific options are respected when used with
interpreted by the :class:`.BufferedRowResultProxy`, and if omitted the
buffer will grow to ultimately store 1000 rows at a time.
- .. versionadded:: 1.0.6
+ .. versionchanged:: 1.4 The ``max_row_buffer`` size can now be greater than
+ 1000, and the buffer will grow to that size.
.. _psycopg2_executemany_mode: