pitrou commented on code in PR #39019:
URL: https://github.com/apache/arrow/pull/39019#discussion_r1425677518
##########
dev/archery/archery/integration/runner.py:
##########
@@ -193,6 +193,8 @@ def _run_test_cases(self,
``case_runner`` ran against ``test_cases``
"""
def case_wrapper(test_case):
+ if serial:
+ return case_runner(test_case)
Review Comment:
Is this addition deliberate?
##########
dev/archery/archery/integration/datagen.py:
##########
@@ -927,6 +927,85 @@ class LargeListColumn(_BaseListColumn, _LargeOffsetsMixin):
pass
+class ListViewField(Field):
+
+ def __init__(self, name, value_field, *, nullable=True,
+ metadata=None):
+ super().__init__(name, nullable=nullable,
+ metadata=metadata)
+ self.value_field = value_field
+
+ @property
+ def column_class(self):
+ return ListViewColumn
+
+ def _get_type(self):
+ return OrderedDict([
Review Comment:
FTR, we don't need `OrderedDict` anymore as regular dicts are now ordered by
default.
--
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]