1
0
mirror of https://github.com/postgres/postgres.git synced 2025-12-07 12:02:30 +03:00

Fix more instances of "the the" in comments.

Plus one instance of "to to" in the docs.
This commit is contained in:
Heikki Linnakangas
2013-12-13 19:58:48 +02:00
parent e8312b4f03
commit dde6282500
8 changed files with 11 additions and 11 deletions

View 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.
*

View 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)

View 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

View 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());

View 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.

View 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;

View 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,