Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commitdde6282

Browse files
committed
Fix more instances of "the the" in comments.
Plus one instance of "to to" in the docs.
1 parente8312b4 commitdde6282

File tree

8 files changed

+11
-11
lines changed

8 files changed

+11
-11
lines changed

‎doc/src/sgml/extend.sgml

Lines changed: 1 addition & 1 deletion
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 toto this is using the
1190+
way to how it is done for the core code. One way todo 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

Lines changed: 4 additions & 4 deletions
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 thetheprev-
428-
*linkof the next record. These are stored as "usable byte positions"
429-
*ratherthan 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
uint64CurrBytePos;
432432
uint64PrevBytePos;
@@ -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 thetherecord 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

Lines changed: 1 addition & 1 deletion
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 thetheSTART 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

Lines changed: 1 addition & 1 deletion
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 fromthe thetable_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

Lines changed: 1 addition & 1 deletion
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 thethemessage 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

Lines changed: 1 addition & 1 deletion
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 thethepoint 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

Lines changed: 1 addition & 1 deletion
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 thethereplica identity */
3840+
Bitmapset*idindexattrs;/* columns in the replica identity */
38413841
List*indexoidlist;
38423842
ListCell*l;
38433843
MemoryContextoldcxt;

‎src/pl/plpgsql/src/pl_exec.c

Lines changed: 1 addition & 1 deletion
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-
* ifthethere are no parameters.
6597+
* if there are no parameters.
65986598
*/
65996599
staticchar*
66006600
format_preparedparamsdata(PLpgSQL_execstate*estate,

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp