diff options
| author | Heikki Linnakangas | 2015-05-20 16:44:46 +0000 |
|---|---|---|
| committer | Heikki Linnakangas | 2015-05-20 16:45:43 +0000 |
| commit | fa60fb63e511e7bbcf57ce972338711593a5e7c9 (patch) | |
| tree | b6dc30e0a552d635e1e7bc8ea4d7e5d8b916ae91 /src/backend/replication | |
| parent | 4fc72cc7bb9d2105261b8ee45558af50d788cd19 (diff) | |
Fix more typos in comments.
Patch by CharSyam, plus a few more I spotted with grep.
Diffstat (limited to 'src/backend/replication')
| -rw-r--r-- | src/backend/replication/basebackup.c | 4 | ||||
| -rw-r--r-- | src/backend/replication/logical/origin.c | 2 | ||||
| -rw-r--r-- | src/backend/replication/logical/reorderbuffer.c | 4 | ||||
| -rw-r--r-- | src/backend/replication/logical/snapbuild.c | 8 | ||||
| -rw-r--r-- | src/backend/replication/slot.c | 2 |
5 files changed, 10 insertions, 10 deletions
diff --git a/src/backend/replication/basebackup.c b/src/backend/replication/basebackup.c index 89e8cf073a8..4c1460cb1c4 100644 --- a/src/backend/replication/basebackup.c +++ b/src/backend/replication/basebackup.c @@ -85,7 +85,7 @@ static char *statrelpath = NULL; /* The actual number of bytes, transfer of which may cause sleep. */ static uint64 throttling_sample; -/* Amount of data already transfered but not yet throttled. */ +/* Amount of data already transferred but not yet throttled. */ static int64 throttling_counter; /* The minimum time required to transfer throttling_sample bytes. */ @@ -172,7 +172,7 @@ perform_base_backup(basebackup_options *opt, DIR *tblspcdir) /* * The minimum amount of time for throttling_sample bytes to be - * transfered. + * transferred. */ elapsed_min_unit = USECS_PER_SEC / THROTTLING_FREQUENCY; diff --git a/src/backend/replication/logical/origin.c b/src/backend/replication/logical/origin.c index 738e4b7a41d..b4b98a512e1 100644 --- a/src/backend/replication/logical/origin.c +++ b/src/backend/replication/logical/origin.c @@ -1342,7 +1342,7 @@ pg_replication_origin_advance(PG_FUNCTION_ARGS) /* * Can't sensibly pass a local commit to be flushed at checkpoint - this * xact hasn't committed yet. This is why this function should be used to - * set up the intial replication state, but not for replay. + * set up the initial replication state, but not for replay. */ replorigin_advance(node, remote_commit, InvalidXLogRecPtr, true /* go backward */, true /* wal log */); diff --git a/src/backend/replication/logical/reorderbuffer.c b/src/backend/replication/logical/reorderbuffer.c index 5b407aadef6..2d86323f6f4 100644 --- a/src/backend/replication/logical/reorderbuffer.c +++ b/src/backend/replication/logical/reorderbuffer.c @@ -143,7 +143,7 @@ typedef struct ReorderBufferDiskChange * without hitting disk in OLTP workloads, while starting to spool to disk in * other workloads reasonably fast. * - * At some point in the future it probaly makes sense to have a more elaborate + * At some point in the future it probably makes sense to have a more elaborate * resource management here, but it's not entirely clear what that would look * like. */ @@ -1704,7 +1704,7 @@ ReorderBufferForget(ReorderBuffer *rb, TransactionId xid, XLogRecPtr lsn) txn->final_lsn = lsn; /* - * Proccess cache invalidation messages if there are any. Even if we're + * Process cache invalidation messages if there are any. Even if we're * not interested in the transaction's contents, it could have manipulated * the catalog and we need to update the caches according to that. */ diff --git a/src/backend/replication/logical/snapbuild.c b/src/backend/replication/logical/snapbuild.c index 37476caed9b..35e1c06a31b 100644 --- a/src/backend/replication/logical/snapbuild.c +++ b/src/backend/replication/logical/snapbuild.c @@ -770,7 +770,7 @@ SnapBuildDistributeNewCatalogSnapshot(SnapBuild *builder, XLogRecPtr lsn) /* * Iterate through all toplevel transactions. This can include * subtransactions which we just don't yet know to be that, but that's - * fine, they will just get an unneccesary snapshot queued. + * fine, they will just get an unnecessary snapshot queued. */ dlist_foreach(txn_i, &builder->reorder->toplevel_by_lsn) { @@ -1212,7 +1212,7 @@ SnapBuildFindSnapshot(SnapBuild *builder, XLogRecPtr lsn, xl_running_xacts *runn * to CONSISTENT. * NB: We need to search running.xip when seeing a transaction's end to * make sure it's a toplevel transaction and it's been one of the - * intially running ones. + * initially running ones. * Interestingly, in contrast to HS, this allows us not to care about * subtransactions - and by extension suboverflowed xl_running_xacts - * at all. @@ -1657,7 +1657,7 @@ SnapBuildRestore(SnapBuild *builder, XLogRecPtr lsn) * Make sure the snapshot had been stored safely to disk, that's normally * cheap. * Note that we do not need PANIC here, nobody will be able to use the - * slot without fsyncing, and saving it won't suceed without an fsync() + * slot without fsyncing, and saving it won't succeed without an fsync() * either... * ---- */ @@ -1749,7 +1749,7 @@ SnapBuildRestore(SnapBuild *builder, XLogRecPtr lsn) /* * We are only interested in consistent snapshots for now, comparing - * whether one imcomplete snapshot is more "advanced" seems to be + * whether one incomplete snapshot is more "advanced" seems to be * unnecessarily complex. */ if (ondisk.builder.state < SNAPBUILD_CONSISTENT) diff --git a/src/backend/replication/slot.c b/src/backend/replication/slot.c index 79c7791b1f4..e02571b8bbc 100644 --- a/src/backend/replication/slot.c +++ b/src/backend/replication/slot.c @@ -79,7 +79,7 @@ typedef struct ReplicationSlotOnDisk /* size of the part covered by the checksum */ #define SnapBuildOnDiskChecksummedSize \ sizeof(ReplicationSlotOnDisk) - SnapBuildOnDiskNotChecksummedSize -/* size of the slot data that is version dependant */ +/* size of the slot data that is version dependent */ #define ReplicationSlotOnDiskV2Size \ sizeof(ReplicationSlotOnDisk) - ReplicationSlotOnDiskConstantSize |
