pitrou commented on a change in pull request #11106:
URL: https://github.com/apache/arrow/pull/11106#discussion_r705124344
##########
File path: python/pyarrow/tests/test_array.py
##########
@@ -1951,6 +1952,13 @@ def test_time32_time64_from_integer():
assert result.equals(expected)
+def test_uuid_to_binary():
+ values = [uuid.uuid4() for _ in range(32)]
+ values_bytes = [value.bytes for value in values]
+ arrow_values = pa.array(values)
+ assert arrow_values.to_pylist() == values_bytes
Review comment:
Ok, but what type is inferred? I would expect `binary(16)`, is it the
case?
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]