diff options
author | Amit Kapila <akapila@postgresql.org> | 2020-07-18 09:57:23 +0530 |
---|---|---|
committer | Amit Kapila <akapila@postgresql.org> | 2020-07-18 09:57:23 +0530 |
commit | f41fbee7e704947fd1d2241f35bc8d0e37705919 (patch) | |
tree | 4dc1664c8ae43a20daaddce5d46a3417bc0c2fe1 | |
parent | df7c5cb16e8fcf960e3302355fa6547fba428f5e (diff) | |
download | postgresql-f41fbee7e704947fd1d2241f35bc8d0e37705919.tar.gz postgresql-f41fbee7e704947fd1d2241f35bc8d0e37705919.zip |
Adjust minor comment in reorderbuffer.c.
Author: Dave Cramer
Reviewed-by: David G. Johnston
Discussion: https://postgr.es/m/CADK3HHL8do4Fp1bsymgNasx375njV3AR7zY3UgYwzbL_Dx-n2Q@mail.gmail.com
-rw-r--r-- | src/backend/replication/logical/reorderbuffer.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/backend/replication/logical/reorderbuffer.c b/src/backend/replication/logical/reorderbuffer.c index 4adbe21dfc9..449327a147f 100644 --- a/src/backend/replication/logical/reorderbuffer.c +++ b/src/backend/replication/logical/reorderbuffer.c @@ -58,7 +58,7 @@ * Only decoded changes are evicted from memory (spilled to disk), not the * transaction records. The number of toplevel transactions is limited, * but a transaction with many subtransactions may still consume significant - * amounts of memory. The transaction records are fairly small though and + * amounts of memory. However, the transaction records are fairly small and * are not included in the memory limit. * * The current eviction algorithm is very simple - the transaction is |