Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit a96a8b1

Browse files
Remove superfluous trailing semicolons
Two semicolons were accidentally added to rows which were already terminated semicolons. While harmless, fix by removing these. Author: Richard Guo <[email protected]> Discussion: https://postgr.es/m/CAMbWs4_fnJ0+yOgFioswzLE7t6R8P6cqbuacFVeZqbESFAjs1A@mail.gmail.com
1 parent 46a44dc commit a96a8b1

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/include/lib/radixtree.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2499,7 +2499,7 @@ RT_REMOVE_CHILD_4(RT_RADIX_TREE * tree, RT_PTR_ALLOC * parent_slot, RT_CHILD_PTR
24992499
}
25002500
else
25012501
{
2502-
int deletepos = slot - n4->children;;
2502+
int deletepos = slot - n4->children;
25032503

25042504
Assert(deletepos >= 0);
25052505
Assert(n4->chunks[deletepos] == chunk);

src/test/modules/test_tidstore/test_tidstore.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -199,7 +199,7 @@ check_set_block_offsets(PG_FUNCTION_ARGS)
199199
TidStoreIterResult *iter_result;
200200
int num_iter_tids = 0;
201201
int num_lookup_tids = 0;
202-
BlockNumber prevblkno = 0;;
202+
BlockNumber prevblkno = 0;
203203

204204
/* lookup each member in the verification array */
205205
for (int i = 0; i < items.num_tids; i++)

0 commit comments

Comments
 (0)