pitrou commented on a change in pull request #11106:
URL: https://github.com/apache/arrow/pull/11106#discussion_r709184997
##########
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:
I don't think performance really is a concern at this point. We should
pick the most desirable semantics (I have no idea what those are :-)).
--
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]