Skip to content

Commit 60f6167

Browse files
committed
Please consider the following formatting changes
1 parent d53781c commit 60f6167

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)