Skip to content

Commit 67d8b69

Browse files
authored
Merge pull request #109 from alibuild/alibot-cleanup-14600
2 parents d53781c + 60f6167 commit 67d8b69

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Framework/Core/src/ArrowTableSlicingCache.cxx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ arrow::Status ArrowTableSlicingCache::updateCacheEntry(int pos, std::shared_ptr<
102102
auto column = table->GetColumnByName(k);
103103

104104
// starting from the end, find the first positive value, in a sorted column it is the largest index
105-
for (auto iChunk = column->num_chunks() - 1; iChunk >=0; --iChunk) {
105+
for (auto iChunk = column->num_chunks() - 1; iChunk >= 0; --iChunk) {
106106
auto chunk = static_cast<arrow::NumericArray<arrow::Int32Type>>(column->chunk(iChunk)->data());
107107
for (auto iElement = chunk.length() - 1; iElement >= 0; --iElement) {
108108
auto value = chunk.Value(iElement);

0 commit comments

Comments
 (0)