]> granicus.if.org Git - postgresql/commitdiff
Fix more instances of "the the" in comments.
authorHeikki Linnakangas <heikki.linnakangas@iki.fi>
Fri, 13 Dec 2013 17:58:48 +0000 (19:58 +0200)
committerHeikki Linnakangas <heikki.linnakangas@iki.fi>
Fri, 13 Dec 2013 18:02:01 +0000 (20:02 +0200)
Plus one instance of "to to" in the docs.

doc/src/sgml/extend.sgml
src/backend/access/transam/xlog.c
src/backend/access/transam/xlogfuncs.c
src/backend/commands/vacuum.c
src/backend/replication/walreceiver.c
src/backend/storage/ipc/procarray.c
src/backend/utils/cache/relcache.c
src/pl/plpgsql/src/pl_exec.c

index 5015002aac8eca5b411c5e1c42b8924fd4441e48..367f35b0abcde4b705b33c97ed94446a8f06a1c1 100644 (file)
@@ -1187,7 +1187,7 @@ include $(PGXS)
 
    <para>
     Alternatively, you can set up a directory for a VPATH build in a similar
-    way to how it is done for the core code. One way to to this is using the
+    way to how it is done for the core code. One way to do this is using the
     core script <filename>config/prep_buildtree</>. Once this has been done
     you can build by setting the <literal>make</literal> variable
     <varname>USE_VPATH</varname> like this:
index 0efb50b17ef9669a977d9dd4a4592a476bbb75c8..56da16a578884c95e2d845c62254e674420b11a2 100644 (file)
@@ -424,9 +424,9 @@ typedef struct XLogCtlInsert
        /*
         * CurrBytePos is the end of reserved WAL. The next record will be inserted
         * at that position. PrevBytePos is the start position of the previously
-        * inserted (or rather, reserved) record - it is copied to the the prev-
-        * link of the next record. These are stored as "usable byte positions"
-        * rather than XLogRecPtrs (see XLogBytePosToRecPtr()).
+        * inserted (or rather, reserved) record - it is copied to the prev-link
+        * of the next record. These are stored as "usable byte positions" rather
+        * than XLogRecPtrs (see XLogBytePosToRecPtr()).
         */
        uint64          CurrBytePos;
        uint64          PrevBytePos;
@@ -10831,7 +10831,7 @@ next_record_is_invalid:
  * 'tliRecPtr' is the position of the WAL record we're interested in. It is
  * used to decide which timeline to stream the requested WAL from.
  *
- * If the the record is not immediately available, the function returns false
+ * If the record is not immediately available, the function returns false
  * if we're not in standby mode. In standby mode, waits for it to become
  * available.
  *
index b7950f77a6587dcfda2e58ff2e455afbdb261b18..c421a59db9900776aa2b496ba1848b76d666eba9 100644 (file)
@@ -589,7 +589,7 @@ pg_backup_start_time(PG_FUNCTION_ARGS)
        }
 
        /*
-        * Parse the file to find the the START TIME line.
+        * Parse the file to find the START TIME line.
         */
        backup_start_time[0] = '\0';
        while (fgets(fline, sizeof(fline), lfp) != NULL)
index 7dee79ca5ff3b8e8581a8dcabb0ed7af33e23409..11990609a3033ee41c6374006b995b6885726a4b 100644 (file)
@@ -382,7 +382,7 @@ get_rel_oids(Oid relid, const RangeVar *vacrel)
  *   DEAD or RECENTLY_DEAD (see HeapTupleSatisfiesVacuum).
  * - freezeLimit is the Xid below which all Xids are replaced by
  *   FrozenTransactionId during vacuum.
- * - xidFullScanLimit (computed from the the table_freeze_age parameter)
+ * - xidFullScanLimit (computed from table_freeze_age parameter)
  *   represents a minimum Xid value; a table whose relfrozenxid is older than
  *   this will have a full-table vacuum applied to it, to freeze tuples across
  *   the whole table.  Vacuuming a table younger than this value can use a
index 413f0b94051d083475ef4cc22098b0b2a8808065..36637faa1626968f4c32d67fb5c99ec7a56742bc 100644 (file)
@@ -1152,7 +1152,7 @@ XLogWalRcvSendHSFeedback(bool immed)
        elog(DEBUG2, "sending hot standby feedback xmin %u epoch %u",
                 xmin, nextEpoch);
 
-       /* Construct the the message and send it. */
+       /* Construct the message and send it. */
        resetStringInfo(&reply_message);
        pq_sendbyte(&reply_message, 'h');
        pq_sendint64(&reply_message, GetCurrentIntegerTimestamp());
index e801c8def0c616c348f47bcb78051e1754fc552f..0263a52e703d29541bb3222ab2eb55a8d2d0949e 100644 (file)
@@ -662,7 +662,7 @@ ProcArrayApplyRecoveryInfo(RunningTransactions running)
        pfree(xids);
 
        /*
-        * latestObservedXid is at least set to the the point where SUBTRANS was
+        * latestObservedXid is at least set to the point where SUBTRANS was
         * started up to (c.f. ProcArrayInitRecovery()) or to the biggest xid
         * RecordKnownAssignedTransactionIds() was called for.  Initialize
         * subtrans from thereon, up to nextXid - 1.
index 03bbb9f338133e0a459f7426b5777b4b5b082181..86d99e5d559bbde3249592fdac137f510dd26fa2 100644 (file)
@@ -3837,7 +3837,7 @@ RelationGetIndexAttrBitmap(Relation relation, IndexAttrBitmapKind attrKind)
 {
        Bitmapset  *indexattrs; /* indexed columns */
        Bitmapset  *uindexattrs; /* columns in unique indexes */
-       Bitmapset  *idindexattrs; /* columns in the the replica identity */
+       Bitmapset  *idindexattrs; /* columns in the replica identity */
        List       *indexoidlist;
        ListCell   *l;
        MemoryContext oldcxt;
index f5f1892e69ddc1b64b6e64365a4cc3501ece13a5..8d0afc4abec30038dbb904872ffa503eec49aef7 100644 (file)
@@ -6594,7 +6594,7 @@ format_expr_params(PLpgSQL_execstate *estate,
 
 /*
  * Return a formatted string with information about PreparedParamsData, or NULL
- * if the there are no parameters.
+ * if there are no parameters.
  */
 static char *
 format_preparedparamsdata(PLpgSQL_execstate *estate,