diff options
author | Amit Kapila <akapila@postgresql.org> | 2018-12-17 14:07:27 +0530 |
---|---|---|
committer | Amit Kapila <akapila@postgresql.org> | 2018-12-17 14:32:25 +0530 |
commit | 3abb11e55b0a8408cd91fe341cda1f568774df58 (patch) | |
tree | 3f0344596b492b60f60be60da2473541c9f8e264 /src/backend/executor | |
parent | 67915fb8e51692ae92622696ad03e933be224bf2 (diff) | |
download | postgresql-3abb11e55b0a8408cd91fe341cda1f568774df58.tar.gz postgresql-3abb11e55b0a8408cd91fe341cda1f568774df58.zip |
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
Diffstat (limited to 'src/backend/executor')
-rw-r--r-- | src/backend/executor/execTuples.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/backend/executor/execTuples.c b/src/backend/executor/execTuples.c index 37c46543cdd..52692fc4f12 100644 --- a/src/backend/executor/execTuples.c +++ b/src/backend/executor/execTuples.c @@ -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 |