]> granicus.if.org Git - postgresql/commitdiff
Remove extra semicolons.
authorAmit Kapila <akapila@postgresql.org>
Mon, 17 Dec 2018 08:37:27 +0000 (14:07 +0530)
committerAmit Kapila <akapila@postgresql.org>
Mon, 17 Dec 2018 09:02:25 +0000 (14:32 +0530)
Reported-by: David Rowley
Author: David Rowley
Reviewed-by: Amit Kapila
Backpatch-through: 10
Discussion: https://postgr.es/m/CAKJS1f8EneeYyzzvdjahVZ6gbAHFkHbSFB5m_C0Y6TUJs9Dgdg@mail.gmail.com

src/backend/commands/trigger.c
src/backend/executor/execTuples.c
src/backend/optimizer/prep/prepunion.c

index bcdd86ce92f73519e3fcf7d3758d806db2e6966a..fb0de60a455354dfeda2ace1826930791837c996 100644 (file)
@@ -5780,7 +5780,7 @@ AfterTriggerSaveEvent(EState *estate, ResultRelInfo *relinfo,
                bool            delete_old_table = transition_capture->tcs_delete_old_table;
                bool            update_old_table = transition_capture->tcs_update_old_table;
                bool            update_new_table = transition_capture->tcs_update_new_table;
-               bool            insert_new_table = transition_capture->tcs_insert_new_table;;
+               bool            insert_new_table = transition_capture->tcs_insert_new_table;
 
                /*
                 * For INSERT events newtup should be non-NULL, for DELETE events
index 37c46543cdd5b7e296341a51dc739ebbb825155f..52692fc4f124d4394aa78ad3c733b72065716f22 100644 (file)
@@ -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
index 2a1c1cb2e1af81681b8e1b82218423ddba712fd8..da278f785effb711cbc793fb74b0b507630167f3 100644 (file)
@@ -817,7 +817,7 @@ generate_nonunion_paths(SetOperationStmt *op, PlannerInfo *root,
        /* Build result relation. */
        result_rel = fetch_upper_rel(root, UPPERREL_SETOP,
                                                                 bms_union(lrel->relids, rrel->relids));
-       result_rel->reltarget = create_pathtarget(root, tlist);;
+       result_rel->reltarget = create_pathtarget(root, tlist);
 
        /*
         * Append the child results together.