Skip to content

Commit

Permalink
Add apacheGH-44579 reference
Browse files Browse the repository at this point in the history
  • Loading branch information
kou committed Nov 6, 2024
1 parent bda0f34 commit e93d0f4
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions cpp/src/arrow/array/statistics.h
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,7 @@ struct ARROW_EXPORT ArrayStatistics {
const std::shared_ptr<DataType>& operator()(const int64_t&) { return int64(); }
const std::shared_ptr<DataType>& operator()(const uint64_t&) { return uint64(); }
const std::shared_ptr<DataType>& operator()(const double&) { return float64(); }
// GH-44579: How to support binary data?
const std::shared_ptr<DataType>& operator()(const std::string&) { return utf8(); }
} visitor;
return std::visit(visitor, value.value());
Expand Down

0 comments on commit e93d0f4

Please sign in to comment.