diff options
Diffstat (limited to 'src/backend/executor/execTuples.c')
-rw-r--r-- | src/backend/executor/execTuples.c | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/src/backend/executor/execTuples.c b/src/backend/executor/execTuples.c index 9f18d460818..fda20ec3183 100644 --- a/src/backend/executor/execTuples.c +++ b/src/backend/executor/execTuples.c @@ -385,8 +385,8 @@ tts_heap_materialize(TupleTableSlot *slot) { /* * The tuple contained in this slot is not allocated in the memory - * context of the given slot (else it would have TTS_SHOULDFREE set). - * Copy the tuple into the given slot's memory context. + * context of the given slot (else it would have TTS_FLAG_SHOULDFREE + * set). Copy the tuple into the given slot's memory context. */ hslot->tuple = heap_copytuple(hslot->tuple); } @@ -554,8 +554,9 @@ tts_minimal_materialize(TupleTableSlot *slot) { /* * The minimal tuple contained in this slot is not allocated in the - * memory context of the given slot (else it would have TTS_SHOULDFREE - * set). Copy the minimal tuple into the given slot's memory context. + * memory context of the given slot (else it would have + * TTS_FLAG_SHOULDFREE set). Copy the minimal tuple into the given + * slot's memory context. */ mslot->mintuple = heap_copy_minimal_tuple(mslot->mintuple); } |