aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorAlvaro Herrera <alvherre@alvh.no-ip.org>2014-12-03 11:52:16 -0300
committerAlvaro Herrera <alvherre@alvh.no-ip.org>2014-12-03 11:52:16 -0300
commit567737822a004dd23a105c5b7129ff98b2805ac7 (patch)
treebc8513d989f33b2c54ddee580dda757f09a8ce86 /src
parent7a0be6782b5fc050ec93e386aec13f3100f498a7 (diff)
downloadpostgresql-567737822a004dd23a105c5b7129ff98b2805ac7.tar.gz
postgresql-567737822a004dd23a105c5b7129ff98b2805ac7.zip
Fix typos
Diffstat (limited to 'src')
-rw-r--r--src/backend/access/transam/clog.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/backend/access/transam/clog.c b/src/backend/access/transam/clog.c
index 27ca4c65673..ace2413bdf6 100644
--- a/src/backend/access/transam/clog.c
+++ b/src/backend/access/transam/clog.c
@@ -416,7 +416,7 @@ TransactionIdGetStatus(TransactionId xid, XLogRecPtr *lsn)
*
* Testing during the PostgreSQL 9.2 development cycle revealed that on a
* large multi-processor system, it was possible to have more CLOG page
- * requests in flight at one time than the numebr of CLOG buffers which existed
+ * requests in flight at one time than the number of CLOG buffers which existed
* at that time, which was hardcoded to 8. Further testing revealed that
* performance dropped off with more than 32 CLOG buffers, possibly because
* the linear buffer search algorithm doesn't scale well.