diff options
| author | Nathan Bossart <nathan@postgresql.org> | 2025-10-27 10:30:05 -0500 |
|---|---|---|
| committer | Nathan Bossart <nathan@postgresql.org> | 2025-10-27 10:30:05 -0500 |
| commit | 123661427b974777ed00abcfa10443d0ca525b3c (patch) | |
| tree | bd63f709bdcd79e2c5eb5ef21b7a5caa8dd9b2d9 /src/backend | |
| parent | 2e84248d6497ce06e8c63e08d3cf3bee1e9ee105 (diff) | |
Fix a couple of comments.
These were discovered while reviewing Aleksander Alekseev's
proposed changes to pgindent.
Oversights in commits 393e0d2314 and 25a30bbd42.
Discussion: https://postgr.es/m/aP-H6kSsGOxaB21k%40nathan
Diffstat (limited to 'src/backend')
| -rw-r--r-- | src/backend/executor/nodeWindowAgg.c | 2 | ||||
| -rw-r--r-- | src/backend/storage/ipc/waiteventset.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/backend/executor/nodeWindowAgg.c b/src/backend/executor/nodeWindowAgg.c index 88c6bbba259..fda66f24e55 100644 --- a/src/backend/executor/nodeWindowAgg.c +++ b/src/backend/executor/nodeWindowAgg.c @@ -1473,7 +1473,7 @@ release_partition(WindowAggState *winstate) * * The caller must have already determined that the row is in the partition * and fetched it into a slot if fetch_tuple is false. -.* This function just encapsulates the framing rules. + * This function just encapsulates the framing rules. * * Returns: * -1, if the row is out of frame and no succeeding rows can be in frame diff --git a/src/backend/storage/ipc/waiteventset.c b/src/backend/storage/ipc/waiteventset.c index b0746521ae4..465cee40ccc 100644 --- a/src/backend/storage/ipc/waiteventset.c +++ b/src/backend/storage/ipc/waiteventset.c @@ -2010,7 +2010,7 @@ ResOwnerReleaseWaitEventSet(Datum res) * NB: be sure to save and restore errno around it. (That's standard practice * in most signal handlers, of course, but we used to omit it in handlers that * only set a flag.) XXX - * + * * NB: this function is called from critical sections and signal handlers so * throwing an error is not a good idea. * |
