Remove extra semicolons.
authorAmit Kapila
Mon, 17 Dec 2018 08:59:49 +0000 (14:29 +0530)
committerAmit Kapila
Mon, 17 Dec 2018 08:59:49 +0000 (14:29 +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

index 2886aebef4be5e50f16abf1b94f53701e75e7a31..039a1e31171887f12ec3255b13f822889edb2e09 100644 (file)
@@ -5475,7 +5475,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;
 
        if ((event == TRIGGER_EVENT_DELETE && delete_old_table) ||
            (event == TRIGGER_EVENT_UPDATE && update_old_table))