Skip to content

Commit 0fe0b2f

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 91fc2a0 commit 0fe0b2f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/backend/commands/trigger.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5475,7 +5475,7 @@ AfterTriggerSaveEvent(EState *estate, ResultRelInfo *relinfo,
54755475
bool delete_old_table = transition_capture->tcs_delete_old_table;
54765476
bool update_old_table = transition_capture->tcs_update_old_table;
54775477
bool update_new_table = transition_capture->tcs_update_new_table;
5478-
bool insert_new_table = transition_capture->tcs_insert_new_table;;
5478+
bool insert_new_table = transition_capture->tcs_insert_new_table;
54795479

54805480
if ((event == TRIGGER_EVENT_DELETE && delete_old_table) ||
54815481
(event == TRIGGER_EVENT_UPDATE && update_old_table))

0 commit comments

Comments
 (0)