-
Notifications
You must be signed in to change notification settings - Fork 3.5k
New issue
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
[Python][C#] Pyarrow allows null column names but Apache.Arrow for C# doesn't #36588
Comments
Related issue in C# library: #32886 |
CurtHagenlocher
added a commit
that referenced
this issue
Dec 11, 2023
… tests. (#39167) ### What changes are included in this PR? Allows field names to be blank (but not null). Enables schema metadata to be read from JSON integration tests. Enables integration tests for cases that are now working. ### Are these changes tested? Yes. * Closes: #36588 Authored-by: Curt Hagenlocher <curt@hagenlocher.org> Signed-off-by: Curt Hagenlocher <curt@hagenlocher.org>
mapleFU
pushed a commit
to mapleFU/arrow
that referenced
this issue
Dec 13, 2023
…ration tests. (apache#39167) ### What changes are included in this PR? Allows field names to be blank (but not null). Enables schema metadata to be read from JSON integration tests. Enables integration tests for cases that are now working. ### Are these changes tested? Yes. * Closes: apache#36588 Authored-by: Curt Hagenlocher <curt@hagenlocher.org> Signed-off-by: Curt Hagenlocher <curt@hagenlocher.org>
clayburn
pushed a commit
to clayburn/arrow
that referenced
this issue
Jan 23, 2024
…ration tests. (apache#39167) ### What changes are included in this PR? Allows field names to be blank (but not null). Enables schema metadata to be read from JSON integration tests. Enables integration tests for cases that are now working. ### Are these changes tested? Yes. * Closes: apache#36588 Authored-by: Curt Hagenlocher <curt@hagenlocher.org> Signed-off-by: Curt Hagenlocher <curt@hagenlocher.org>
dgreiss
pushed a commit
to dgreiss/arrow
that referenced
this issue
Feb 19, 2024
…ration tests. (apache#39167) ### What changes are included in this PR? Allows field names to be blank (but not null). Enables schema metadata to be read from JSON integration tests. Enables integration tests for cases that are now working. ### Are these changes tested? Yes. * Closes: apache#36588 Authored-by: Curt Hagenlocher <curt@hagenlocher.org> Signed-off-by: Curt Hagenlocher <curt@hagenlocher.org>
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Describe the bug, including details regarding any error messages, version, and platform.
Using
serialize_pandas()
in pyarrow to serialize a pandas dataframe to arrow bytes allows for columns with a null name.However, attempting to deserialize these bytes in the Apache Arrow C# library results in an
ArgumentNullException
being thrown from theField
constructor with the messageValue cannot be null. (Parameter 'name')
.If null field names are allowed in the Apache Arrow spec, then this is a bug in the C# library. If they are not allowed, then would this be a bug in pyarrow?
Component(s)
C#, Python
The text was updated successfully, but these errors were encountered: