diff options
author | Daniel Gustafsson | 2024-03-29 22:51:43 +0000 |
---|---|---|
committer | Daniel Gustafsson | 2024-03-29 22:51:43 +0000 |
commit | a96a8b15fa4e00b78ac7dd7f37ff7f871aa248f6 (patch) | |
tree | f0121d89fe610f6ecb51605ad92441d723fb086c /src/test | |
parent | 46a44dc372033da9bd8b9840711e560c9d73e768 (diff) |
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
Diffstat (limited to 'src/test')
-rw-r--r-- | src/test/modules/test_tidstore/test_tidstore.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/test/modules/test_tidstore/test_tidstore.c b/src/test/modules/test_tidstore/test_tidstore.c index 3d4af77dda1..32c6c477b72 100644 --- a/src/test/modules/test_tidstore/test_tidstore.c +++ b/src/test/modules/test_tidstore/test_tidstore.c @@ -199,7 +199,7 @@ check_set_block_offsets(PG_FUNCTION_ARGS) TidStoreIterResult *iter_result; int num_iter_tids = 0; int num_lookup_tids = 0; - BlockNumber prevblkno = 0;; + BlockNumber prevblkno = 0; /* lookup each member in the verification array */ for (int i = 0; i < items.num_tids; i++) |