From f88dd4fa43b4edf4fb906e95c55a706d9508021b Mon Sep 17 00:00:00 2001 From: Amit Kapila Date: Mon, 17 Dec 2018 14:19:11 +0530 Subject: [PATCH] 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 --- src/backend/commands/trigger.c | 2 +- src/backend/optimizer/prep/prepunion.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/commands/trigger.c b/src/backend/commands/trigger.c index 0665f110ba..a0cc82c2a3 100644 --- a/src/backend/commands/trigger.c +++ b/src/backend/commands/trigger.c @@ -5758,7 +5758,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 diff --git a/src/backend/optimizer/prep/prepunion.c b/src/backend/optimizer/prep/prepunion.c index 7d75e1eda9..c8465a14af 100644 --- a/src/backend/optimizer/prep/prepunion.c +++ b/src/backend/optimizer/prep/prepunion.c @@ -816,7 +816,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.