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

Appearance settings

Commit a96a8b1

Browse filesBrowse 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 <guofenglinux@gmail.com> Discussion: https://postgr.es/m/CAMbWs4_fnJ0+yOgFioswzLE7t6R8P6cqbuacFVeZqbESFAjs1A@mail.gmail.com
1 parent 46a44dc commit a96a8b1
Copy full SHA for a96a8b1

File tree

Expand file treeCollapse file tree

2 files changed

+2
-2
lines changed
Open diff view settings
Filter options
Expand file treeCollapse file tree

2 files changed

+2
-2
lines changed
Open diff view settings
Collapse file

‎src/include/lib/radixtree.h‎

Copy file name to clipboardExpand all lines: src/include/lib/radixtree.h
+1-1Lines 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);
Collapse file

‎src/test/modules/test_tidstore/test_tidstore.c‎

Copy file name to clipboardExpand all lines: src/test/modules/test_tidstore/test_tidstore.c
+1-1Lines 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 (0)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.