diff options
Diffstat (limited to 'src/backend')
-rw-r--r-- | src/backend/access/gin/ginget.c | 2 | ||||
-rw-r--r-- | src/backend/executor/execParallel.c | 2 | ||||
-rw-r--r-- | src/backend/parser/gram.y | 2 | ||||
-rw-r--r-- | src/backend/utils/cache/typcache.c | 2 |
4 files changed, 4 insertions, 4 deletions
diff --git a/src/backend/access/gin/ginget.c b/src/backend/access/gin/ginget.c index 6bfe18c359f..b9de54a717e 100644 --- a/src/backend/access/gin/ginget.c +++ b/src/backend/access/gin/ginget.c @@ -442,7 +442,7 @@ restartScanEntry: /* * Lock the entry leaf page. This is more coarse-grained than * necessary, because it will conflict with any insertions that - * land on the same leaf page, not only the exacty key we searched + * land on the same leaf page, not only the exact key we searched * for. But locking an individual tuple would require updating * that lock whenever it moves because of insertions or vacuums, * which seems too complicated. diff --git a/src/backend/executor/execParallel.c b/src/backend/executor/execParallel.c index 0fdbd119d9b..0ac12ef26bc 100644 --- a/src/backend/executor/execParallel.c +++ b/src/backend/executor/execParallel.c @@ -1050,7 +1050,7 @@ ExecParallelRetrieveJitInstrumentation(PlanState *planstate, MemoryContextAllocZero(planstate->state->es_query_cxt, sizeof(JitInstrumentation)); combined = planstate->state->es_jit_worker_instr; - /* Accummulate all the workers' instrumentations. */ + /* Accumulate all the workers' instrumentations. */ for (n = 0; n < shared_jit->num_workers; ++n) InstrJitAgg(combined, &shared_jit->jit_instr[n]); diff --git a/src/backend/parser/gram.y b/src/backend/parser/gram.y index 689eada51e2..1ab94931f3c 100644 --- a/src/backend/parser/gram.y +++ b/src/backend/parser/gram.y @@ -2685,7 +2685,7 @@ alter_identity_column_option: ; PartitionBoundSpec: - /* a HASH partition*/ + /* a HASH partition */ FOR VALUES WITH '(' hash_partbound ')' { ListCell *lc; diff --git a/src/backend/utils/cache/typcache.c b/src/backend/utils/cache/typcache.c index e38fd16eb09..21087d6af75 100644 --- a/src/backend/utils/cache/typcache.c +++ b/src/backend/utils/cache/typcache.c @@ -150,7 +150,7 @@ typedef struct RecordCacheEntry /* * To deal with non-anonymous record types that are exchanged by backends - * involved in a parallel query, we also need a shared verion of the above. + * involved in a parallel query, we also need a shared version of the above. */ struct SharedRecordTypmodRegistry { |