diff options
Diffstat (limited to 'src/backend')
-rw-r--r-- | src/backend/commands/dbcommands.c | 2 | ||||
-rw-r--r-- | src/backend/executor/execMain.c | 2 | ||||
-rw-r--r-- | src/backend/jit/llvm/llvmjit_inline.cpp | 2 | ||||
-rw-r--r-- | src/backend/replication/logical/snapbuild.c | 2 | ||||
-rw-r--r-- | src/backend/replication/walsender.c | 6 |
5 files changed, 7 insertions, 7 deletions
diff --git a/src/backend/commands/dbcommands.c b/src/backend/commands/dbcommands.c index 1f4ce2fb9cf..ef05633bb05 100644 --- a/src/backend/commands/dbcommands.c +++ b/src/backend/commands/dbcommands.c @@ -3090,7 +3090,7 @@ dbase_redo(XLogReaderState *record) /* * There's a case where the copy source directory is missing for the - * same reason above. Create the emtpy source directory so that + * same reason above. Create the empty source directory so that * copydir below doesn't fail. The directory will be dropped soon by * recovery. */ diff --git a/src/backend/executor/execMain.c b/src/backend/executor/execMain.c index a5115b9c1f7..39bfb48dc22 100644 --- a/src/backend/executor/execMain.c +++ b/src/backend/executor/execMain.c @@ -134,7 +134,7 @@ ExecutorStart(QueryDesc *queryDesc, int eflags) /* * In some cases (e.g. an EXECUTE statement) a query execution will skip * parse analysis, which means that the query_id won't be reported. Note - * that it's harmless to report the query_id multiple time, as the call + * that it's harmless to report the query_id multiple times, as the call * will be ignored if the top level query_id has already been reported. */ pgstat_report_query_id(queryDesc->plannedstmt->queryId, false); diff --git a/src/backend/jit/llvm/llvmjit_inline.cpp b/src/backend/jit/llvm/llvmjit_inline.cpp index dc35e002f51..c765add8564 100644 --- a/src/backend/jit/llvm/llvmjit_inline.cpp +++ b/src/backend/jit/llvm/llvmjit_inline.cpp @@ -753,7 +753,7 @@ function_inlinable(llvm::Function &F, /* import referenced function itself */ importVars.insert(referencedFunction->getName()); - /* import referenced function and its dependants */ + /* import referenced function and its dependents */ for (auto& recImportVar : recImportVars) importVars.insert(recImportVar.first()); } diff --git a/src/backend/replication/logical/snapbuild.c b/src/backend/replication/logical/snapbuild.c index 829c5681120..62542827e4b 100644 --- a/src/backend/replication/logical/snapbuild.c +++ b/src/backend/replication/logical/snapbuild.c @@ -1816,7 +1816,7 @@ SnapBuildSerialize(SnapBuild *builder, XLogRecPtr lsn) fsync_fname("pg_logical/snapshots", true); /* - * Now there's no way we can loose the dumped state anymore, remember this + * Now there's no way we can lose the dumped state anymore, remember this * as a serialization point. */ builder->last_serialized_snapshot = lsn; diff --git a/src/backend/replication/walsender.c b/src/backend/replication/walsender.c index 4ed3747e3f9..75e8363e248 100644 --- a/src/backend/replication/walsender.c +++ b/src/backend/replication/walsender.c @@ -2050,9 +2050,9 @@ PhysicalConfirmReceivedLocation(XLogRecPtr lsn) /* * One could argue that the slot should be saved to disk now, but that'd - * be energy wasted - the worst lost information can do here is give us - * wrong information in a statistics view - we'll just potentially be more - * conservative in removing files. + * be energy wasted - the worst thing lost information could cause here is + * to give wrong information in a statistics view - we'll just potentially + * be more conservative in removing files. */ } |