Skip to content

Commit

Permalink
Add missing uint64_t
Browse files Browse the repository at this point in the history
  • Loading branch information
kou committed Feb 25, 2025
1 parent 4a69312 commit 8584053
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions python/pyarrow/array.pxi
Original file line number Diff line number Diff line change
Expand Up @@ -794,6 +794,8 @@ cdef class ArrayStatistics(_Weakrefable):
return get[c_bool](value)
elif holds_alternative[int64_t](value):
return get[int64_t](value)
elif holds_alternative[uint64_t](value):
return get[uint64_t](value)
elif holds_alternative[double](value):
return get[double](value)
else:
Expand Down

0 comments on commit 8584053

Please sign in to comment.