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

Spelling fixes

From: Josh Soref <jsoref@gmail.com>
This commit is contained in:
Peter Eisentraut
2017-03-14 12:57:10 -04:00
parent f97a028d8e
commit a47b38c9ee
24 changed files with 34 additions and 34 deletions

View File

@ -321,7 +321,7 @@ GetReplicationApplyDelay(void)
long secs;
int usecs;
TimestampTz chunckReplayStartTime;
TimestampTz chunkReplayStartTime;
SpinLockAcquire(&walrcv->mutex);
receivePtr = walrcv->receivedUpto;
@ -332,12 +332,12 @@ GetReplicationApplyDelay(void)
if (receivePtr == replayPtr)
return 0;
chunckReplayStartTime = GetCurrentChunkReplayStartTime();
chunkReplayStartTime = GetCurrentChunkReplayStartTime();
if (chunckReplayStartTime == 0)
if (chunkReplayStartTime == 0)
return -1;
TimestampDifference(chunckReplayStartTime,
TimestampDifference(chunkReplayStartTime,
GetCurrentTimestamp(),
&secs, &usecs);