danepitkin commented on code in PR #37097:
URL: https://github.com/apache/arrow/pull/37097#discussion_r1307622131
##########
python/pyarrow/_dataset.pyx:
##########
@@ -1838,7 +1838,7 @@ cdef class FileFragment(Fragment):
typ = ""
partition_dict = get_partition_keys(self.partition_expression)
partition = ", ".join(
- [f"{key}={val}" for key, val in partition_dict.items()]
+ sorted([f"{key}={val}" for key, val in partition_dict.items()])
Review Comment:
I'll go ahead and remove sorting here and have the test handle
non-deterministic repr output
--
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]