There was an error while loading. Please reload this page.
1 parent 04db798 commit aed9630Copy full SHA for aed9630
1 file changed
postgresql/documentation/driver.py
@@ -478,12 +478,11 @@
478
Naturally, a statement used with ``first()`` should be crafted with these
479
rules in mind.
480
481
- ``ps.chunks(*parameters, chunksize = 256)``
+ ``ps.chunks(*parameters)``
482
This access point is designed for situations where rows are being streamed out
483
quickly. It is a method that returns a ``collections.Iterator`` that produces
484
- *sequences* of rows. The size of the "chunks" produced is *normally* consistent
485
- with the given ``chunksize`` keyword argument. This is the most efficient way
486
- to get rows out of the cursor.
+ *sequences* of rows. This is the most efficient way to get rows from the
+ database.
487
488
``ps.declare(*parameters)``
489
Create a scrollable cursor with hold. This returns a `postgresql.api.Cursor`
0 commit comments