We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Encountered while working #2539 and trying to extend testing of test_segarray_write to cover string values
test_segarray_write
In [5]: a, b, c = ["one", "two", "three"], ["un", "deux", "trois"], ["uno", "dos", "tres"] In [6]: s = ak.SegArray(ak.array([0, 0, len(a), len(a), len(a), len(a) + len(c)]), ak.array(a + c)) In [7]: s Out[7]: SegArray([ [] ['one', 'two', 'three'] [] [] ['uno', 'dos', 'tres'] [] ]) In [8]: s.to_parquet("segarray_test_empty") Out[8]: 'Dataset written successfully!' In [9]: rd_data = ak.read_parquet("segarray_test_empty*") In [10]: rd_data Out[10]: SegArray([ ['one', 'two', 'three'] ['uno', 'dos', 'tres'] ])
The text was updated successfully, but these errors were encountered:
@pierce314159 - is this with single locale or multiple? I definitely remember this working so I want to make sure I am not missing anything.
EDIT I was able to reproduce this on single locale. I am also going to be testing on multi-locale, but will need to do so later.
Sorry, something went wrong.
Ethan-DeBandi99
Successfully merging a pull request may close this issue.
Encountered while working #2539 and trying to extend testing of
test_segarray_write
to cover string valuesThe text was updated successfully, but these errors were encountered: