diff options
author | Peter Eisentraut <peter@eisentraut.org> | 2019-10-22 09:58:20 +0200 |
---|---|---|
committer | Peter Eisentraut <peter@eisentraut.org> | 2019-10-22 09:58:20 +0200 |
commit | f86f46d091a6876fbf28e0a4a87ca72b560cf77f (patch) | |
tree | 728410731dff4f2d7f3597afa5789222f5c74ac9 /src/backend/access/heap/rewriteheap.c | |
parent | 52ad1e659967896ed153185328ffe806d69abcb6 (diff) | |
download | postgresql-f86f46d091a6876fbf28e0a4a87ca72b560cf77f.tar.gz postgresql-f86f46d091a6876fbf28e0a4a87ca72b560cf77f.zip |
Fix comment
The last argument of smgrextend() was renamed from isTemp to skipFsync
in debcec7dc31a992703911a9953e299c8d730c778, but the comments at two
call sites were not updated.
Diffstat (limited to 'src/backend/access/heap/rewriteheap.c')
-rw-r--r-- | src/backend/access/heap/rewriteheap.c | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/src/backend/access/heap/rewriteheap.c b/src/backend/access/heap/rewriteheap.c index 306e74ea103..d41dbcf5f72 100644 --- a/src/backend/access/heap/rewriteheap.c +++ b/src/backend/access/heap/rewriteheap.c @@ -703,10 +703,9 @@ raw_heap_insert(RewriteState state, HeapTuple tup) true); /* - * Now write the page. We say isTemp = true even if it's not a - * temp table, because there's no need for smgr to schedule an - * fsync for this write; we'll do it ourselves in - * end_heap_rewrite. + * Now write the page. We say skipFsync = true because there's no + * need for smgr to schedule an fsync for this write; we'll do it + * ourselves in end_heap_rewrite. */ RelationOpenSmgr(state->rs_new_rel); |