diff options
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); |