-
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
GH-32662: [C#] Make dictionaries in file and memory implementations work correctly and support integration tests #39146
Conversation
Hmm... I seem to have made this ridiculously hard by misunderstanding the spec... . |
Going to rethink this a little |
…xpectations. Support dictionaries in C data interface integration testing.
After merging your PR, Conbench analyzed the 4 benchmarking runs that have been run so far on merge-commit a5a366d. There were no benchmark performance regressions. 🎉 The full Conbench report has more details. It also includes information about 2 possible false positives for unstable benchmarks that are known to sometimes produce them. |
…ions work correctly and support integration tests (apache#39146) ### Rationale for this change While dictionary support was implemented for C# in apache#6870 for streams, support did not extend to files or memory buffers. This change rectifies that. ### What changes are included in this PR? Changes to the memory and file implementations to support reading and writing of dictionaries, including nested dictionaries. Changes to the integration tests so that they work with dictionaries. Enabling the dictionary tests in CI. ### Are these changes tested? Yes, both directly and indirectly via the integration tests. ### Are there any user-facing changes? No. * Closes: apache#32662 Authored-by: Curt Hagenlocher <curt@hagenlocher.org> Signed-off-by: Curt Hagenlocher <curt@hagenlocher.org>
…ions work correctly and support integration tests (apache#39146) ### Rationale for this change While dictionary support was implemented for C# in apache#6870 for streams, support did not extend to files or memory buffers. This change rectifies that. ### What changes are included in this PR? Changes to the memory and file implementations to support reading and writing of dictionaries, including nested dictionaries. Changes to the integration tests so that they work with dictionaries. Enabling the dictionary tests in CI. ### Are these changes tested? Yes, both directly and indirectly via the integration tests. ### Are there any user-facing changes? No. * Closes: apache#32662 Authored-by: Curt Hagenlocher <curt@hagenlocher.org> Signed-off-by: Curt Hagenlocher <curt@hagenlocher.org>
…ions work correctly and support integration tests (apache#39146) ### Rationale for this change While dictionary support was implemented for C# in apache#6870 for streams, support did not extend to files or memory buffers. This change rectifies that. ### What changes are included in this PR? Changes to the memory and file implementations to support reading and writing of dictionaries, including nested dictionaries. Changes to the integration tests so that they work with dictionaries. Enabling the dictionary tests in CI. ### Are these changes tested? Yes, both directly and indirectly via the integration tests. ### Are there any user-facing changes? No. * Closes: apache#32662 Authored-by: Curt Hagenlocher <curt@hagenlocher.org> Signed-off-by: Curt Hagenlocher <curt@hagenlocher.org>
Rationale for this change
While dictionary support was implemented for C# in #6870 for streams, support did not extend to files or memory buffers. This change rectifies that.
What changes are included in this PR?
Changes to the memory and file implementations to support reading and writing of dictionaries, including nested dictionaries.
Changes to the integration tests so that they work with dictionaries.
Enabling the dictionary tests in CI.
Are these changes tested?
Yes, both directly and indirectly via the integration tests.
Are there any user-facing changes?
No.