diff options
author | Amirsoroush <amirsoroush.dev@gmail.com> | 2023-04-23 01:19:01 +0300 |
---|---|---|
committer | Daniele Varrazzo <daniele.varrazzo@gmail.com> | 2023-04-23 22:47:26 +0200 |
commit | 3450d159b55fe265b251ee41f494d5c318e0b644 (patch) | |
tree | 5b628cc78e5a3fc05d3e8c568f1b146da7ec0b31 | |
parent | 5108191aa50f44a220e29ed97d117e4640a0da13 (diff) | |
download | psycopg2-master.tar.gz |
-rw-r--r-- | doc/src/usage.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/src/usage.rst b/doc/src/usage.rst index 2bf2448..9dcf52e 100644 --- a/doc/src/usage.rst +++ b/doc/src/usage.rst @@ -860,7 +860,7 @@ Server side cursors When a database query is executed, the Psycopg `cursor` usually fetches all the records returned by the backend, transferring them to the client -process. If the query returned an huge amount of data, a proportionally large +process. If the query returns a huge amount of data, a proportionally large amount of memory will be allocated by the client. If the dataset is too large to be practically handled on the client side, it is |