Skip to content

Commit 7355323

Browse files
committed
Minor fix for Windows
1 parent b9df24f commit 7355323

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

cpp/src/parquet/statistics.cc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -580,7 +580,7 @@ class TypedStatisticsImpl : public TypedStatistics<DType> {
580580
logical_type_(LogicalTypeId(descr_)) {
581581
try {
582582
comparator_ = MakeComparator<DType>(descr);
583-
} catch (const std::exception& e) {
583+
} catch (const ParquetException&) {
584584
comparator_ = nullptr;
585585
}
586586
TypedStatisticsImpl::Reset();

0 commit comments

Comments
 (0)