Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commit3abb11e

Browse files
author
Amit Kapila
committed
Remove extra semicolons.
Reported-by: David RowleyAuthor: David RowleyReviewed-by: Amit KapilaBackpatch-through: 10Discussion:https://postgr.es/m/CAKJS1f8EneeYyzzvdjahVZ6gbAHFkHbSFB5m_C0Y6TUJs9Dgdg@mail.gmail.com
1 parent67915fb commit3abb11e

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

‎src/backend/commands/trigger.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5780,7 +5780,7 @@ AfterTriggerSaveEvent(EState *estate, ResultRelInfo *relinfo,
57805780
booldelete_old_table=transition_capture->tcs_delete_old_table;
57815781
boolupdate_old_table=transition_capture->tcs_update_old_table;
57825782
boolupdate_new_table=transition_capture->tcs_update_new_table;
5783-
boolinsert_new_table=transition_capture->tcs_insert_new_table;;
5783+
boolinsert_new_table=transition_capture->tcs_insert_new_table;
57845784

57855785
/*
57865786
* For INSERT events newtup should be non-NULL, for DELETE events

‎src/backend/executor/execTuples.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -738,7 +738,7 @@ tts_buffer_heap_copyslot(TupleTableSlot *dstslot, TupleTableSlot *srcslot)
738738
dstslot->tts_flags |=TTS_FLAG_SHOULDFREE;
739739
dstslot->tts_flags &= ~TTS_FLAG_EMPTY;
740740
oldContext=MemoryContextSwitchTo(dstslot->tts_mcxt);
741-
bdstslot->base.tuple=ExecCopySlotHeapTuple(srcslot);;
741+
bdstslot->base.tuple=ExecCopySlotHeapTuple(srcslot);
742742
MemoryContextSwitchTo(oldContext);
743743
}
744744
else

‎src/backend/optimizer/prep/prepunion.c

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

822822
/*
823823
* Append the child results together.

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp