]> granicus.if.org Git - postgresql/commitdiff
Fix typos
authorAlvaro Herrera <alvherre@alvh.no-ip.org>
Wed, 3 Dec 2014 14:52:15 +0000 (11:52 -0300)
committerAlvaro Herrera <alvherre@alvh.no-ip.org>
Wed, 3 Dec 2014 14:52:15 +0000 (11:52 -0300)
src/backend/access/transam/clog.c
src/backend/access/transam/xloginsert.c
src/include/access/rmgrlist.h

index 313bd0424049a073038edf105bff837db0b1c472..cb7ef28c472704e064a160f0f3e54fcef6f3e897 100644 (file)
@@ -419,7 +419,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.
index f1bf728c3d2ddb45394d6ad5b96b70dc2c81ac4a..f3d610f423cc08f99a4857e91eb400d43d48daa2 100644 (file)
@@ -299,7 +299,7 @@ XLogRegisterBlock(uint8 block_id, RelFileNode *rnode, ForkNumber forknum,
  * Add data to the WAL record that's being constructed.
  *
  * The data is appended to the "main chunk", available at replay with
- * XLogGetRecData().
+ * XLogRecGetData().
  */
 void
 XLogRegisterData(char *data, int len)
index 76a6421fb6855c989aad1c98ca6e8d9019b94cc0..0fc932f84ad2d7683a3f214096855b13da16ff7b 100644 (file)
@@ -24,7 +24,7 @@
  * Changes to this list possibly need a XLOG_PAGE_MAGIC bump.
  */
 
-/* symbol name, textual name, redo, desc, startup, cleanup */
+/* symbol name, textual name, redo, desc, identify, startup, cleanup */
 PG_RMGR(RM_XLOG_ID, "XLOG", xlog_redo, xlog_desc, xlog_identify, NULL, NULL)
 PG_RMGR(RM_XACT_ID, "Transaction", xact_redo, xact_desc, xact_identify, NULL, NULL)
 PG_RMGR(RM_SMGR_ID, "Storage", smgr_redo, smgr_desc, smgr_identify, NULL, NULL)