aboutsummaryrefslogtreecommitdiff
path: root/src/backend
diff options
context:
space:
mode:
Diffstat (limited to 'src/backend')
-rw-r--r--src/backend/jit/llvm/llvmjit_expr.c4
-rw-r--r--src/backend/optimizer/plan/createplan.c12
-rw-r--r--src/backend/postmaster/autovacuum.c3
-rw-r--r--src/backend/utils/sort/logtape.c2
4 files changed, 10 insertions, 11 deletions
diff --git a/src/backend/jit/llvm/llvmjit_expr.c b/src/backend/jit/llvm/llvmjit_expr.c
index 4d8836cfb3f..cca5c117a0e 100644
--- a/src/backend/jit/llvm/llvmjit_expr.c
+++ b/src/backend/jit/llvm/llvmjit_expr.c
@@ -2448,8 +2448,8 @@ BuildV1Call(LLVMJitContext *context, LLVMBuilderRef b,
*v_fcinfo_isnull = LLVMBuildLoad(b, v_fcinfo_isnullp, "");
/*
- * Add lifetime-end annotation, signaling that writes to memory don't
- * have to be retained (important for inlining potential).
+ * Add lifetime-end annotation, signaling that writes to memory don't have
+ * to be retained (important for inlining potential).
*/
{
LLVMValueRef v_lifetime = create_LifetimeEnd(mod);
diff --git a/src/backend/optimizer/plan/createplan.c b/src/backend/optimizer/plan/createplan.c
index 744eed187d4..eb9543f6add 100644
--- a/src/backend/optimizer/plan/createplan.c
+++ b/src/backend/optimizer/plan/createplan.c
@@ -2118,9 +2118,9 @@ create_agg_plan(PlannerInfo *root, AggPath *best_path)
/*
* Agg can project, so no need to be terribly picky about child tlist, but
* we do need grouping columns to be available. We are a bit more careful
- * with hash aggregate, where we explicitly request small tlist to minimize
- * I/O needed for spilling (we can't be sure spilling won't be necessary,
- * so we just do it every time).
+ * with hash aggregate, where we explicitly request small tlist to
+ * minimize I/O needed for spilling (we can't be sure spilling won't be
+ * necessary, so we just do it every time).
*/
flags = CP_LABEL_TLIST;
@@ -2219,9 +2219,9 @@ create_groupingsets_plan(PlannerInfo *root, GroupingSetsPath *best_path)
/*
* Agg can project, so no need to be terribly picky about child tlist, but
* we do need grouping columns to be available. We are a bit more careful
- * with hash aggregate, where we explicitly request small tlist to minimize
- * I/O needed for spilling (we can't be sure spilling won't be necessary,
- * so we just do it every time).
+ * with hash aggregate, where we explicitly request small tlist to
+ * minimize I/O needed for spilling (we can't be sure spilling won't be
+ * necessary, so we just do it every time).
*/
flags = CP_LABEL_TLIST;
diff --git a/src/backend/postmaster/autovacuum.c b/src/backend/postmaster/autovacuum.c
index 38dc97de11f..9c7d4b0c60e 100644
--- a/src/backend/postmaster/autovacuum.c
+++ b/src/backend/postmaster/autovacuum.c
@@ -653,8 +653,7 @@ AutoVacLauncherMain(int argc, char *argv[])
HandleAutoVacLauncherInterrupts();
/*
- * a worker finished, or postmaster signaled failure to start a
- * worker
+ * a worker finished, or postmaster signaled failure to start a worker
*/
if (got_SIGUSR2)
{
diff --git a/src/backend/utils/sort/logtape.c b/src/backend/utils/sort/logtape.c
index 4984f8ce50a..138da0c1b42 100644
--- a/src/backend/utils/sort/logtape.c
+++ b/src/backend/utils/sort/logtape.c
@@ -170,7 +170,7 @@ typedef struct LogicalTape
* numbers first).
*/
long *prealloc;
- int nprealloc; /* number of elements in list */
+ int nprealloc; /* number of elements in list */
int prealloc_size; /* number of elements list can hold */
} LogicalTape;