From 4bf172c9b8284162785aa8f4919dbc0f7f80111b Mon Sep 17 00:00:00 2001 From: Joost Hoozemans Date: Fri, 2 Sep 2022 14:03:52 +0200 Subject: [PATCH] Changed datawidth of WrittenFile.size to int64 to match C++ code --- python/pyarrow/_dataset.pxd | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python/pyarrow/_dataset.pxd b/python/pyarrow/_dataset.pxd index 8e5501fa16f..a512477d501 100644 --- a/python/pyarrow/_dataset.pxd +++ b/python/pyarrow/_dataset.pxd @@ -161,4 +161,4 @@ cdef class WrittenFile(_Weakrefable): # the written file. cdef public object metadata # The size of the file in bytes - cdef public int size + cdef public int64_t size