diff options
Diffstat (limited to 'src/backend')
-rw-r--r-- | src/backend/access/transam/twophase.c | 2 | ||||
-rw-r--r-- | src/backend/libpq/auth.c | 4 | ||||
-rw-r--r-- | src/backend/optimizer/util/relnode.c | 2 | ||||
-rw-r--r-- | src/backend/parser/parse_target.c | 2 | ||||
-rw-r--r-- | src/backend/storage/buffer/bufmgr.c | 2 | ||||
-rw-r--r-- | src/backend/storage/ipc/dsm_impl.c | 2 | ||||
-rw-r--r-- | src/backend/storage/ipc/procarray.c | 2 | ||||
-rw-r--r-- | src/backend/storage/ipc/shm_mq.c | 2 | ||||
-rw-r--r-- | src/backend/utils/adt/json.c | 2 | ||||
-rw-r--r-- | src/backend/utils/adt/windowfuncs.c | 2 | ||||
-rw-r--r-- | src/backend/utils/misc/guc.c | 4 |
11 files changed, 13 insertions, 13 deletions
diff --git a/src/backend/access/transam/twophase.c b/src/backend/access/transam/twophase.c index c4fd9eff870..e7234c87bbc 100644 --- a/src/backend/access/transam/twophase.c +++ b/src/backend/access/transam/twophase.c @@ -1613,7 +1613,7 @@ CheckPointTwoPhase(XLogRecPtr redo_horizon) * transaction manager isn't active. * * It's also possible to move I/O out of the lock, but on - * every error we should check whether somebody commited our + * every error we should check whether somebody committed our * transaction in different backend. Let's leave this optimisation * for future, if somebody will spot that this place cause * bottleneck. diff --git a/src/backend/libpq/auth.c b/src/backend/libpq/auth.c index 57c2f4848b5..7f1ae8c137a 100644 --- a/src/backend/libpq/auth.c +++ b/src/backend/libpq/auth.c @@ -838,7 +838,7 @@ pg_GSS_recvauth(Port *port) /* * Loop through GSSAPI message exchange. This exchange can consist of - * multiple messags sent in both directions. First message is always from + * multiple messages sent in both directions. First message is always from * the client. All messages from client to server are password packets * (type 'p'). */ @@ -1078,7 +1078,7 @@ pg_SSPI_recvauth(Port *port) /* * Loop through SSPI message exchange. This exchange can consist of - * multiple messags sent in both directions. First message is always from + * multiple messages sent in both directions. First message is always from * the client. All messages from client to server are password packets * (type 'p'). */ diff --git a/src/backend/optimizer/util/relnode.c b/src/backend/optimizer/util/relnode.c index 20e4bf7d125..7e37edf5f5d 100644 --- a/src/backend/optimizer/util/relnode.c +++ b/src/backend/optimizer/util/relnode.c @@ -501,7 +501,7 @@ build_join_rel(PlannerInfo *root, * level. * * Note that if there are more than two rels in this relation, they could - * be divided between inner_rel and outer_rel in any arbitary way. We + * be divided between inner_rel and outer_rel in any arbitrary way. We * assume this doesn't matter, because we should hit all the same baserels * and joinclauses while building up to this joinrel no matter which we * take; therefore, we should make the same decision here however we get diff --git a/src/backend/parser/parse_target.c b/src/backend/parser/parse_target.c index ec08e1e118e..fc93063ed0b 100644 --- a/src/backend/parser/parse_target.c +++ b/src/backend/parser/parse_target.c @@ -115,7 +115,7 @@ transformTargetEntry(ParseState *pstate, * * This code acts mostly the same for SELECT, UPDATE, or RETURNING lists; * the main thing is to transform the given expressions (the "val" fields). - * The exprKind parameter distinguishes these cases when necesssary. + * The exprKind parameter distinguishes these cases when necessary. */ List * transformTargetList(ParseState *pstate, List *targetlist, diff --git a/src/backend/storage/buffer/bufmgr.c b/src/backend/storage/buffer/bufmgr.c index 6c5075f5fb8..6dd7c6ecb67 100644 --- a/src/backend/storage/buffer/bufmgr.c +++ b/src/backend/storage/buffer/bufmgr.c @@ -113,7 +113,7 @@ int effective_io_concurrency = 0; /* * GUC variables about triggering kernel writeback for buffers written; OS - * dependant defaults are set via the GUC mechanism. + * dependent defaults are set via the GUC mechanism. */ int checkpoint_flush_after = 0; int bgwriter_flush_after = 0; diff --git a/src/backend/storage/ipc/dsm_impl.c b/src/backend/storage/ipc/dsm_impl.c index 5d7b46f9e70..173b9822191 100644 --- a/src/backend/storage/ipc/dsm_impl.c +++ b/src/backend/storage/ipc/dsm_impl.c @@ -34,7 +34,7 @@ * substantially, but there should be few systems where we must make do * with such poor tools. * - * As ever, Windows requires its own implemetation. + * As ever, Windows requires its own implementation. * * Portions Copyright (c) 1996-2016, PostgreSQL Global Development Group * Portions Copyright (c) 1994, Regents of the University of California diff --git a/src/backend/storage/ipc/procarray.c b/src/backend/storage/ipc/procarray.c index 97e8962ae81..740beb691ce 100644 --- a/src/backend/storage/ipc/procarray.c +++ b/src/backend/storage/ipc/procarray.c @@ -71,7 +71,7 @@ typedef struct ProcArrayStruct * Known assigned XIDs handling */ int maxKnownAssignedXids; /* allocated size of array */ - int numKnownAssignedXids; /* currrent # of valid entries */ + int numKnownAssignedXids; /* current # of valid entries */ int tailKnownAssignedXids; /* index of oldest valid element */ int headKnownAssignedXids; /* index of newest element, + 1 */ slock_t known_assigned_xids_lck; /* protects head/tail pointers */ diff --git a/src/backend/storage/ipc/shm_mq.c b/src/backend/storage/ipc/shm_mq.c index 094e9fd7d1a..7d1c9cdbd5a 100644 --- a/src/backend/storage/ipc/shm_mq.c +++ b/src/backend/storage/ipc/shm_mq.c @@ -1104,7 +1104,7 @@ shm_mq_inc_bytes_read(volatile shm_mq *mq, Size n) sender = mq->mq_sender; SpinLockRelease(&mq->mq_mutex); - /* We shoudn't have any bytes to read without a sender. */ + /* We shouldn't have any bytes to read without a sender. */ Assert(sender != NULL); SetLatch(&sender->procLatch); } diff --git a/src/backend/utils/adt/json.c b/src/backend/utils/adt/json.c index 844db523241..f7044186035 100644 --- a/src/backend/utils/adt/json.c +++ b/src/backend/utils/adt/json.c @@ -508,7 +508,7 @@ parse_object(JsonLexContext *lex, JsonSemAction *sem) */ lex->lex_level++; - /* we know this will succeeed, just clearing the token */ + /* we know this will succeed, just clearing the token */ lex_expect(JSON_PARSE_OBJECT_START, lex, JSON_TOKEN_OBJECT_START); tok = lex_peek(lex); diff --git a/src/backend/utils/adt/windowfuncs.c b/src/backend/utils/adt/windowfuncs.c index b9c7cff39d2..3c1d3cf62de 100644 --- a/src/backend/utils/adt/windowfuncs.c +++ b/src/backend/utils/adt/windowfuncs.c @@ -67,7 +67,7 @@ rank_up(WindowObject winobj) up = true; } - /* We can advance the mark, but only *after* acccess to prior row */ + /* We can advance the mark, but only *after* access to prior row */ WinSetMarkPosition(winobj, curpos); return up; diff --git a/src/backend/utils/misc/guc.c b/src/backend/utils/misc/guc.c index edcafce2065..f0d4ec165e9 100644 --- a/src/backend/utils/misc/guc.c +++ b/src/backend/utils/misc/guc.c @@ -2391,7 +2391,7 @@ static struct config_int ConfigureNamesInt[] = GUC_UNIT_BLOCKS }, &checkpoint_flush_after, - /* see bufmgr.h: OS dependant default */ + /* see bufmgr.h: OS dependent default */ DEFAULT_CHECKPOINT_FLUSH_AFTER, 0, WRITEBACK_MAX_PENDING_FLUSHES, NULL, NULL, NULL }, @@ -2403,7 +2403,7 @@ static struct config_int ConfigureNamesInt[] = GUC_UNIT_BLOCKS }, &backend_flush_after, - /* see bufmgr.h: OS dependant default */ + /* see bufmgr.h: OS dependent default */ DEFAULT_BACKEND_FLUSH_AFTER, 0, WRITEBACK_MAX_PENDING_FLUSHES, NULL, NULL, NULL }, |