summaryrefslogtreecommitdiff
path: root/src/backend/rewrite
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/backend/rewrite
parent81f72115cf189b0a428d3efca2e4beb02b825111 (diff)
Fix some comments.
Like commit 123661427b, these were discovered while reviewing Aleksander Alekseev's proposed changes to pgindent.
Diffstat (limited to 'src/backend/rewrite')
-rw-r--r--src/backend/rewrite/rewriteHandler.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/backend/rewrite/rewriteHandler.c b/src/backend/rewrite/rewriteHandler.c
index 688dcd09ca6..0852322cc58 100644
--- a/src/backend/rewrite/rewriteHandler.c
+++ b/src/backend/rewrite/rewriteHandler.c
@@ -2620,7 +2620,7 @@ view_col_is_auto_updatable(RangeTblRef *rtr, TargetEntry *tle)
* view_query_is_auto_updatable - test whether the specified view definition
* represents an auto-updatable view. Returns NULL (if the view can be updated)
* or a message string giving the reason that it cannot be.
-
+ *
* The returned string has not been translated; if it is shown as an error
* message, the caller should apply _() to translate it.
*