Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
Skip to content

Commit dde6282

Browse files
committed
Fix more instances of "the the" in comments.
Plus one instance of "to to" in the docs.
1 parent e8312b4 commit dde6282

File tree

8 files changed

+11
-11
lines changed

8 files changed

+11
-11
lines changed

doc/src/sgml/extend.sgml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1187,7 +1187,7 @@ include $(PGXS)
11871187

11881188
<para>
11891189
Alternatively, you can set up a directory for a VPATH build in a similar
1190-
way to how it is done for the core code. One way to to this is using the
1190+
way to how it is done for the core code. One way to do this is using the
11911191
core script <filename>config/prep_buildtree</>. Once this has been done
11921192
you can build by setting the <literal>make</literal> variable
11931193
<varname>USE_VPATH</varname> like this:

src/backend/access/transam/xlog.c

+4-4
Original file line numberDiff line numberDiff line change
@@ -424,9 +424,9 @@ typedef struct XLogCtlInsert
424424
/*
425425
* CurrBytePos is the end of reserved WAL. The next record will be inserted
426426
* at that position. PrevBytePos is the start position of the previously
427-
* inserted (or rather, reserved) record - it is copied to the the prev-
428-
* link of the next record. These are stored as "usable byte positions"
429-
* rather than XLogRecPtrs (see XLogBytePosToRecPtr()).
427+
* inserted (or rather, reserved) record - it is copied to the prev-link
428+
* of the next record. These are stored as "usable byte positions" rather
429+
* than XLogRecPtrs (see XLogBytePosToRecPtr()).
430430
*/
431431
uint64 CurrBytePos;
432432
uint64 PrevBytePos;
@@ -10831,7 +10831,7 @@ XLogPageRead(XLogReaderState *xlogreader, XLogRecPtr targetPagePtr, int reqLen,
1083110831
* 'tliRecPtr' is the position of the WAL record we're interested in. It is
1083210832
* used to decide which timeline to stream the requested WAL from.
1083310833
*
10834-
* If the the record is not immediately available, the function returns false
10834+
* If the record is not immediately available, the function returns false
1083510835
* if we're not in standby mode. In standby mode, waits for it to become
1083610836
* available.
1083710837
*

src/backend/access/transam/xlogfuncs.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -589,7 +589,7 @@ pg_backup_start_time(PG_FUNCTION_ARGS)
589589
}
590590

591591
/*
592-
* Parse the file to find the the START TIME line.
592+
* Parse the file to find the START TIME line.
593593
*/
594594
backup_start_time[0] = '\0';
595595
while (fgets(fline, sizeof(fline), lfp) != NULL)

src/backend/commands/vacuum.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -382,7 +382,7 @@ get_rel_oids(Oid relid, const RangeVar *vacrel)
382382
* DEAD or RECENTLY_DEAD (see HeapTupleSatisfiesVacuum).
383383
* - freezeLimit is the Xid below which all Xids are replaced by
384384
* FrozenTransactionId during vacuum.
385-
* - xidFullScanLimit (computed from the the table_freeze_age parameter)
385+
* - xidFullScanLimit (computed from table_freeze_age parameter)
386386
* represents a minimum Xid value; a table whose relfrozenxid is older than
387387
* this will have a full-table vacuum applied to it, to freeze tuples across
388388
* the whole table. Vacuuming a table younger than this value can use a

src/backend/replication/walreceiver.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -1152,7 +1152,7 @@ XLogWalRcvSendHSFeedback(bool immed)
11521152
elog(DEBUG2, "sending hot standby feedback xmin %u epoch %u",
11531153
xmin, nextEpoch);
11541154

1155-
/* Construct the the message and send it. */
1155+
/* Construct the message and send it. */
11561156
resetStringInfo(&reply_message);
11571157
pq_sendbyte(&reply_message, 'h');
11581158
pq_sendint64(&reply_message, GetCurrentIntegerTimestamp());

src/backend/storage/ipc/procarray.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -662,7 +662,7 @@ ProcArrayApplyRecoveryInfo(RunningTransactions running)
662662
pfree(xids);
663663

664664
/*
665-
* latestObservedXid is at least set to the the point where SUBTRANS was
665+
* latestObservedXid is at least set to the point where SUBTRANS was
666666
* started up to (c.f. ProcArrayInitRecovery()) or to the biggest xid
667667
* RecordKnownAssignedTransactionIds() was called for. Initialize
668668
* subtrans from thereon, up to nextXid - 1.

src/backend/utils/cache/relcache.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -3837,7 +3837,7 @@ RelationGetIndexAttrBitmap(Relation relation, IndexAttrBitmapKind attrKind)
38373837
{
38383838
Bitmapset *indexattrs; /* indexed columns */
38393839
Bitmapset *uindexattrs; /* columns in unique indexes */
3840-
Bitmapset *idindexattrs; /* columns in the the replica identity */
3840+
Bitmapset *idindexattrs; /* columns in the replica identity */
38413841
List *indexoidlist;
38423842
ListCell *l;
38433843
MemoryContext oldcxt;

src/pl/plpgsql/src/pl_exec.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -6594,7 +6594,7 @@ format_expr_params(PLpgSQL_execstate *estate,
65946594

65956595
/*
65966596
* Return a formatted string with information about PreparedParamsData, or NULL
6597-
* if the there are no parameters.
6597+
* if there are no parameters.
65986598
*/
65996599
static char *
66006600
format_preparedparamsdata(PLpgSQL_execstate *estate,

0 commit comments

Comments
 (0)