diff options
author | Jeff Davis | 2024-12-06 17:59:12 +0000 |
---|---|---|
committer | Jeff Davis | 2024-12-06 17:59:12 +0000 |
commit | ffe003cae1ff28b698f1769e46e3dc14b5516070 (patch) | |
tree | 435d14d53b8a45f297c23c680916d83b94c16320 | |
parent | 8743ea1b2eb3dfbb024f40e8d9952cd85596f552 (diff) |
Comment fix: "buffer context lock" to "buffer content lock".
The term "buffer context lock" is outdated as of commit 5d5087363d.
-rw-r--r-- | src/backend/access/transam/xact.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/backend/access/transam/xact.c b/src/backend/access/transam/xact.c index 1eccb78ddc4..3ebd7c40418 100644 --- a/src/backend/access/transam/xact.c +++ b/src/backend/access/transam/xact.c @@ -2830,7 +2830,7 @@ AbortTransaction(void) pgstat_report_wait_end(); pgstat_progress_end_command(); - /* Clean up buffer context locks, too */ + /* Clean up buffer content locks, too */ UnlockBuffers(); /* Reset WAL record construction state */ |