]> granicus.if.org Git - postgresql/commitdiff
Fix some typos introduced by the logical decoding patch.
authorRobert Haas <rhaas@postgresql.org>
Wed, 5 Mar 2014 18:00:22 +0000 (13:00 -0500)
committerRobert Haas <rhaas@postgresql.org>
Wed, 5 Mar 2014 18:00:22 +0000 (13:00 -0500)
Erik Rijkers

src/backend/replication/logical/decode.c
src/backend/replication/logical/logical.c
src/backend/replication/logical/reorderbuffer.c
src/backend/storage/ipc/procarray.c

index e8949aab3240b8994dbb31075e5b79d0d82f79e4..af3948e8a4a040eab138271663c71d402fb4048d 100644 (file)
@@ -497,7 +497,7 @@ DecodeCommit(LogicalDecodingContext *ctx, XLogRecordBuffer *buf,
 
        /* ----
         * Check whether we are interested in this specific transaction, and tell
-        * the the reorderbuffer to forget the content of the (sub-)transactions
+        * the reorderbuffer to forget the content of the (sub-)transactions
         * if not.
         *
         * There basically two reasons we might not be interested in this
index 3c562383dff93d101cfeae06c91abe3d0d75adf0..13a22d4b2d2345ef1d2eb6ab6f21b8246a810263 100644 (file)
@@ -179,7 +179,7 @@ StartupDecodingContext(List *output_plugin_options,
  *             perform the use-case dependent, actual, work.
  *
  * Needs to be called while in a memory context that's at least as long lived
- * as the the decoding context because further memory contexts will be created
+ * as the decoding context because further memory contexts will be created
  * inside it.
  *
  * Returns an initialized decoding context after calling the output plugin's
@@ -334,7 +334,7 @@ CreateInitDecodingContext(char *plugin,
  *             perform the use-case dependent, actual, work.
  *
  * Needs to be called while in a memory context that's at least as long lived
- * as the the decoding context because further memory contexts will be created
+ * as the decoding context because further memory contexts will be created
  * inside it.
  *
  * Returns an initialized decoding context after calling the output plugin's
index e7182338b895e41ae22e2808dd5e64a5c0c14faa..ad560345b40ff8dda94522a2fdf91c3aa77f6532 100644 (file)
@@ -2741,7 +2741,7 @@ ReorderBufferToastReset(ReorderBuffer *rb, ReorderBufferTXN *txn)
  * * A tuple with a cmin but no cmax (and thus no combocid) got
  *      deleted/updated in another transaction than the one which created it
  *      which we are looking at right now. As only one of cmin, cmax or combocid
- *      is actually stored in the heap we don't have access to the the value we
+ *      is actually stored in the heap we don't have access to the value we
  *      need anymore.
  *
  * To resolve those problems we have a per-transaction hash of (cmin,
index 3376a353a408dd7a9c145db81ac2c20f7709dc9e..ac32d5cb6254167b3651d9267b7500a9b3b7eb66 100644 (file)
@@ -1948,7 +1948,7 @@ GetOldestSafeDecodingTransactionId(void)
        /*
         * Acquire XidGenLock, so no transactions can acquire an xid while we're
         * running. If no transaction with xid were running concurrently a new xid
-        * could influence the the RecentXmin et al.
+        * could influence the RecentXmin et al.
         *
         * We initialize the computation to nextXid since that's guaranteed to be
         * a safe, albeit pessimal, value.