Skip to content

Commit aed9630

Browse files
author
James William Pye
committed
Remove references to chunksize.
1 parent 04db798 commit aed9630

1 file changed

Lines changed: 3 additions & 4 deletions

File tree

postgresql/documentation/driver.py

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -478,12 +478,11 @@
478478
Naturally, a statement used with ``first()`` should be crafted with these
479479
rules in mind.
480480
481-
``ps.chunks(*parameters, chunksize = 256)``
481+
``ps.chunks(*parameters)``
482482
This access point is designed for situations where rows are being streamed out
483483
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.
484+
*sequences* of rows. This is the most efficient way to get rows from the
485+
database.
487486
488487
``ps.declare(*parameters)``
489488
Create a scrollable cursor with hold. This returns a `postgresql.api.Cursor`

0 commit comments

Comments
 (0)