From 8584053d1709b0652bd7e3488246c8ad93b9151c Mon Sep 17 00:00:00 2001 From: Sutou Kouhei Date: Tue, 25 Feb 2025 14:14:21 +0900 Subject: [PATCH] Add missing uint64_t --- python/pyarrow/array.pxi | 2 ++ 1 file changed, 2 insertions(+) diff --git a/python/pyarrow/array.pxi b/python/pyarrow/array.pxi index 18d89cf15634a..72014eea82ccc 100644 --- a/python/pyarrow/array.pxi +++ b/python/pyarrow/array.pxi @@ -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: