Skip to content

Commit 622983e

Browse files
committed
No need to call XLogEnsureRecordSpace when the relation is unlogged.
Amit Kapila
1 parent b10a97b commit 622983e

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/backend/access/gin/ginfast.c

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -552,7 +552,8 @@ shiftList(Relation index, Buffer metabuffer, BlockNumber newHead,
552552
* prepare the XLogInsert machinery for that before entering the
553553
* critical section.
554554
*/
555-
XLogEnsureRecordSpace(data.ndeleted, 0);
555+
if (RelationNeedsWAL(index))
556+
XLogEnsureRecordSpace(data.ndeleted, 0);
556557

557558
START_CRIT_SECTION();
558559

0 commit comments

Comments
 (0)