pitrou commented on code in PR #14223:
URL: https://github.com/apache/arrow/pull/14223#discussion_r1092137614
##########
dev/archery/archery/integration/datagen.py:
##########
@@ -1461,6 +1526,16 @@ def generate_recursive_nested_case():
return _generate_file("recursive_nested", fields, batch_sizes)
+def generate_ree_case():
+ fields = [
+ RunEndEncodedField('ree16', 16, get_field('values', 'int32')),
+ RunEndEncodedField('ree32', 32, get_field('values', 'utf8')),
+ RunEndEncodedField('ree64', 64, get_field('values', 'float32')),
+ ]
+ batch_sizes = [0, 7, 10]
+ return _generate_file("ree", fields, batch_sizes)
Review Comment:
Let's avoid cryptic file names.
```suggestion
return _generate_file("run_end_encoded", fields, batch_sizes)
```
--
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]