diff options
Diffstat (limited to 'src/backend')
-rw-r--r-- | src/backend/access/common/detoast.c | 4 | ||||
-rw-r--r-- | src/backend/access/nbtree/nbtsplitloc.c | 2 | ||||
-rw-r--r-- | src/backend/replication/walreceiver.c | 2 | ||||
-rw-r--r-- | src/backend/statistics/mcv.c | 2 | ||||
-rw-r--r-- | src/backend/storage/buffer/bufmgr.c | 2 | ||||
-rw-r--r-- | src/backend/storage/lmgr/proc.c | 2 | ||||
-rw-r--r-- | src/backend/utils/adt/jsonfuncs.c | 2 | ||||
-rw-r--r-- | src/backend/utils/mmgr/freepage.c | 2 |
8 files changed, 9 insertions, 9 deletions
diff --git a/src/backend/access/common/detoast.c b/src/backend/access/common/detoast.c index b25ca6810bc..f752ac7bbc9 100644 --- a/src/backend/access/common/detoast.c +++ b/src/backend/access/common/detoast.c @@ -501,8 +501,8 @@ toast_fetch_datum(struct varlena *attr) * in the toast relation * * Note that this function supports non-compressed external datums - * and compressed external datums (in which case the requrested slice - * has to be a prefix, i.e. sliceoffset has to be 0). + * and compressed external datums (in which case the requested slice + * has to be a prefix, i.e. sliceoffset has to be 0). * ---------- */ static struct varlena * diff --git a/src/backend/access/nbtree/nbtsplitloc.c b/src/backend/access/nbtree/nbtsplitloc.c index 1c1029b6c4d..a04d4e25d69 100644 --- a/src/backend/access/nbtree/nbtsplitloc.c +++ b/src/backend/access/nbtree/nbtsplitloc.c @@ -814,7 +814,7 @@ _bt_bestsplitloc(FindSplitData *state, int perfectpenalty, final->firstoldonright < state->newitemoff + MAX_LEAF_INTERVAL) { /* - * Avoid the problem by peforming a 50:50 split when the new item is + * Avoid the problem by performing a 50:50 split when the new item is * just to the right of the would-be "many duplicates" split point. */ final = &state->splits[0]; diff --git a/src/backend/replication/walreceiver.c b/src/backend/replication/walreceiver.c index 6abc7807783..f54ae7690dd 100644 --- a/src/backend/replication/walreceiver.c +++ b/src/backend/replication/walreceiver.c @@ -1052,7 +1052,7 @@ XLogWalRcvFlush(bool dying) * false, this is a no-op. * * If 'requestReply' is true, requests the server to reply immediately upon - * receiving this message. This is used for heartbearts, when approaching + * receiving this message. This is used for heartbeats, when approaching * wal_receiver_timeout. */ static void diff --git a/src/backend/statistics/mcv.c b/src/backend/statistics/mcv.c index ee35f6afc56..ae0ddacd064 100644 --- a/src/backend/statistics/mcv.c +++ b/src/backend/statistics/mcv.c @@ -476,7 +476,7 @@ sort_item_compare(const void *a, const void *b, void *arg) * build_column_frequencies * compute frequencies of values in each column * - * This returns an array of SortItems for each attibute the MCV is built + * This returns an array of SortItems for each attribute the MCV is built * on, with a frequency (number of occurrences) for each value. This is * then used to compute "base" frequency of MCV items. * diff --git a/src/backend/storage/buffer/bufmgr.c b/src/backend/storage/buffer/bufmgr.c index 483f705305c..7ad10736d5b 100644 --- a/src/backend/storage/buffer/bufmgr.c +++ b/src/backend/storage/buffer/bufmgr.c @@ -1208,7 +1208,7 @@ BufferAlloc(SMgrRelation smgr, char relpersistence, ForkNumber forkNum, LWLockAcquire(newPartitionLock, LW_EXCLUSIVE); /* remember we have no old-partition lock or tag */ oldPartitionLock = NULL; - /* this just keeps the compiler quiet about uninit variables */ + /* keep the compiler quiet about uninitialized variables */ oldHash = 0; } diff --git a/src/backend/storage/lmgr/proc.c b/src/backend/storage/lmgr/proc.c index 498373fd0ee..b3c54a6a27d 100644 --- a/src/backend/storage/lmgr/proc.c +++ b/src/backend/storage/lmgr/proc.c @@ -636,7 +636,7 @@ PublishStartupProcessInformation(void) } /* - * Used from bufgr to share the value of the buffer that Startup waits on, + * Used from bufmgr to share the value of the buffer that Startup waits on, * or to reset the value to "not waiting" (-1). This allows processing * of recovery conflicts for buffer pins. Set is made before backends look * at this value, so locking not required, especially since the set is diff --git a/src/backend/utils/adt/jsonfuncs.c b/src/backend/utils/adt/jsonfuncs.c index 3553a304b8c..1b0fb2afae6 100644 --- a/src/backend/utils/adt/jsonfuncs.c +++ b/src/backend/utils/adt/jsonfuncs.c @@ -205,7 +205,7 @@ struct ColumnIOData Oid typid; /* column type id */ int32 typmod; /* column type modifier */ TypeCat typcat; /* column type category */ - ScalarIOData scalar_io; /* metadata cache for directi conversion + ScalarIOData scalar_io; /* metadata cache for direct conversion * through input function */ union { diff --git a/src/backend/utils/mmgr/freepage.c b/src/backend/utils/mmgr/freepage.c index faf5d10158b..311750e1cfd 100644 --- a/src/backend/utils/mmgr/freepage.c +++ b/src/backend/utils/mmgr/freepage.c @@ -1692,7 +1692,7 @@ FreePageManagerPutInternal(FreePageManager *fpm, Size first_page, Size npages, /* * The act of allocating pages to recycle may have invalidated the - * results of our previous btree reserch, so repeat it. (We could + * results of our previous btree research, so repeat it. (We could * recheck whether any of our split-avoidance strategies that were * not viable before now are, but it hardly seems worthwhile, so * we don't bother. Consolidation can't be possible now if it |