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

Commitf217761

Browse files
committed
Fix bug in clearing of virtual tuple slot.
I broke/typoed this in4da597e. Astonishingly this mostlydoesn't cause breakage, except when trying to change the tupledescriptor of a slot (because TTS_FLAG_FIXED is assumed to be set).Author: Andres Freund
1 parent93473c6 commitf217761

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

‎src/backend/executor/execTuples.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,7 @@ tts_virtual_clear(TupleTableSlot *slot)
114114
pfree(vslot->data);
115115
vslot->data=NULL;
116116

117-
slot->tts_flags= ~TTS_FLAG_SHOULDFREE;
117+
slot->tts_flags&= ~TTS_FLAG_SHOULDFREE;
118118
}
119119

120120
slot->tts_nvalid=0;

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp