Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commit622983e

Browse files
committed
No need to call XLogEnsureRecordSpace when the relation is unlogged.
Amit Kapila
1 parentb10a97b commit622983e

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)

[8]ページ先頭

©2009-2025 Movatter.jp