[fix](bitmap) incorrect result of function 'bitmap_from_array' (#22305)

This commit is contained in:
Jerry Hu
2023-07-27 22:44:06 +08:00
committed by GitHub
parent 5584d7a5ba
commit b5fa29e138
2 changed files with 2 additions and 2 deletions

View File

@ -279,8 +279,8 @@ struct BitmapFromArray {
//input is valid value
if (!null_map[i]) {
res.emplace_back(bits);
bits.clear();
}
bits.clear();
}
return Status::OK();
}