On branch zym-hash-segment

Your branch is up to date with 'origin/zym-hash-segment'.
 Changes to be committed:
	modified:   src/gausskernel/storage/access/hash/hashpage.cpp
This commit is contained in:
z00848344
2023-09-11 15:11:00 +08:00
parent ea1c30640e
commit 99d6590e94

View File

@ -996,7 +996,7 @@ static bool _hash_alloc_buckets(Relation rel, BlockNumber firstblock, uint32 nbl
if (IsSegmentFileNode(rel->rd_node)) {
Buffer buf;
for (int i = firstblock; i <= lastblock; i++) {
for (BlockNumber i = firstblock; i <= lastblock; i++) {
buf = ReadBuffer(rel, P_NEW);
ReleaseBuffer(buf);
}