Skip to content

Commit 3773052

Browse files
committed
fixup! DPL Analysis: update ArrowTableSlicingCache column lookup
1 parent 9a87db6 commit 3773052

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

Framework/Core/src/ArrowTableSlicingCache.cxx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ arrow::ChunkedArray* getIndexFromLabel(arrow::Table* table, std::string_view lab
3535
auto field = std::ranges::find_if(table->schema()->fields(), [label](std::shared_ptr<arrow::Field> const& field) {
3636
std::string_view name = field->name();
3737
return name == label ||
38-
std::ranges::equal(label, name, [](char c1, char c2){
38+
std::ranges::equal(label, name, [](char c1, char c2) {
3939
return asciiToLower(c1) == asciiToLower(c2);
4040
});
4141
});

0 commit comments

Comments
 (0)