Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
Skip to content

Commit f88dd4f

Browse files
author
Amit Kapila
committed
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
1 parent e83e098 commit f88dd4f

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/backend/commands/trigger.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5758,7 +5758,7 @@ AfterTriggerSaveEvent(EState *estate, ResultRelInfo *relinfo,
57585758
bool delete_old_table = transition_capture->tcs_delete_old_table;
57595759
bool update_old_table = transition_capture->tcs_update_old_table;
57605760
bool update_new_table = transition_capture->tcs_update_new_table;
5761-
bool insert_new_table = transition_capture->tcs_insert_new_table;;
5761+
bool insert_new_table = transition_capture->tcs_insert_new_table;
57625762

57635763
/*
57645764
* For INSERT events newtup should be non-NULL, for DELETE events

src/backend/optimizer/prep/prepunion.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -816,7 +816,7 @@ generate_nonunion_paths(SetOperationStmt *op, PlannerInfo *root,
816816
/* Build result relation. */
817817
result_rel = fetch_upper_rel(root, UPPERREL_SETOP,
818818
bms_union(lrel->relids, rrel->relids));
819-
result_rel->reltarget = create_pathtarget(root, tlist);;
819+
result_rel->reltarget = create_pathtarget(root, tlist);
820820

821821
/*
822822
* Append the child results together.

0 commit comments

Comments
 (0)