diff options
author | Mike Bayer <mike_mp@zzzcomputing.com> | 2012-08-13 17:35:27 -0400 |
---|---|---|
committer | Mike Bayer <mike_mp@zzzcomputing.com> | 2012-08-13 17:35:27 -0400 |
commit | 8c7914e1818961e8d3acee33bea8e006b13993fa (patch) | |
tree | 506e17ff2f5dc2009cb9f98e9689204d2d9d4032 /lib/sqlalchemy/dialects/postgresql/psycopg2.py | |
parent | 96650157083f9c691a7a8a737724159cd6a1d668 (diff) | |
download | sqlalchemy-8c7914e1818961e8d3acee33bea8e006b13993fa.tar.gz |
- update engine docstrings due to move
- struggle with Operators class autodoc
Diffstat (limited to 'lib/sqlalchemy/dialects/postgresql/psycopg2.py')
-rw-r--r-- | lib/sqlalchemy/dialects/postgresql/psycopg2.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/sqlalchemy/dialects/postgresql/psycopg2.py b/lib/sqlalchemy/dialects/postgresql/psycopg2.py index e572b49b0..8a4360b34 100644 --- a/lib/sqlalchemy/dialects/postgresql/psycopg2.py +++ b/lib/sqlalchemy/dialects/postgresql/psycopg2.py @@ -30,7 +30,7 @@ psycopg2-specific keyword arguments which are accepted by ``connection.cursor('some name')``, which has the effect that result rows are not immediately pre-fetched and buffered after statement execution, but are instead left on the server and only retrieved as needed. SQLAlchemy's - :class:`~sqlalchemy.engine.base.ResultProxy` uses special row-buffering + :class:`~sqlalchemy.engine.ResultProxy` uses special row-buffering behavior when this feature is enabled, such that groups of 100 rows at a time are fetched over the wire to reduce conversational overhead. Note that the ``stream_results=True`` execution option is a more targeted |