From c32dbf357c39e03d5ef0ca23b36b1466739448df Mon Sep 17 00:00:00 2001 From: Kunal Marwaha Date: Tue, 11 Jun 2019 00:29:23 -0700 Subject: [PATCH] typo: remove 'a' --- doc/src/faq.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/src/faq.rst b/doc/src/faq.rst index 926b05e6..aab537b5 100644 --- a/doc/src/faq.rst +++ b/doc/src/faq.rst @@ -271,7 +271,7 @@ When should I save and re-use a connection as opposed to creating a new one as n What are the advantages or disadvantages of using named cursors? The only disadvantages is that they use up resources on the server and - that there is a little overhead because a at least two queries (one to + that there is a little overhead because at least two queries (one to create the cursor and one to fetch the initial result set) are issued to the backend. The advantage is that data is fetched one chunk at a time: using small `~cursor.fetchmany()` values it is possible to use very