mirror of
https://github.com/postgres/postgres.git
synced 2025-07-03 20:02:46 +03:00
Remove extra semicolons.
Reported-by: David Rowley Author: David Rowley Reviewed-by: Amit Kapila Backpatch-through: 10 Discussion: https://postgr.es/m/CAKJS1f8EneeYyzzvdjahVZ6gbAHFkHbSFB5m_C0Y6TUJs9Dgdg@mail.gmail.com
This commit is contained in:
@ -738,7 +738,7 @@ tts_buffer_heap_copyslot(TupleTableSlot *dstslot, TupleTableSlot *srcslot)
|
||||
dstslot->tts_flags |= TTS_FLAG_SHOULDFREE;
|
||||
dstslot->tts_flags &= ~TTS_FLAG_EMPTY;
|
||||
oldContext = MemoryContextSwitchTo(dstslot->tts_mcxt);
|
||||
bdstslot->base.tuple = ExecCopySlotHeapTuple(srcslot);;
|
||||
bdstslot->base.tuple = ExecCopySlotHeapTuple(srcslot);
|
||||
MemoryContextSwitchTo(oldContext);
|
||||
}
|
||||
else
|
||||
|
Reference in New Issue
Block a user