summaryrefslogtreecommitdiff
path: root/src/include/executor
diff options
context:
space:
mode:
authorNathan Bossart <nathan@postgresql.org>2025-12-11 15:13:04 -0600
committerNathan Bossart <nathan@postgresql.org>2025-12-11 15:13:04 -0600
commitb4cbc106a6ced69a0a13a980e1b4b212bb127458 (patch)
tree12d340aabe935a8aebf7813fae137d74d3fc8370 /src/include/executor
parent81f72115cf189b0a428d3efca2e4beb02b825111 (diff)
Fix some comments.
Like commit 123661427b, these were discovered while reviewing Aleksander Alekseev's proposed changes to pgindent.
Diffstat (limited to 'src/include/executor')
-rw-r--r--src/include/executor/executor.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/include/executor/executor.h b/src/include/executor/executor.h
index fa2b657fb2f..7cd6a49309f 100644
--- a/src/include/executor/executor.h
+++ b/src/include/executor/executor.h
@@ -404,7 +404,7 @@ ExecEvalExpr(ExprState *state,
* Like ExecEvalExpr(), but for cases where no return value is expected,
* because the side-effects of expression evaluation are what's desired. This
* is e.g. used for projection and aggregate transition computation.
-
+ *
* Evaluate expression identified by "state" in the execution context
* given by "econtext".
*