-
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-34620: [C#] Support DateOnly and TimeOnly on .NET 6.0+ #36125
Conversation
|
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This looks pretty solid. Just one question about the microsecond/nanosecond tick constants.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks for addressing the feedback.
…he#36125) ### What changes are included in this PR? Date32Array and Date64Array now support DateOnly values for construction and reading on .NET 6.0 and later. Time32Array and Time64Array now support TimeOnly values for construction and reading on .NET 6.0 and later. A new TimeArrayBuilder type is used to share logic between Time32Array.Builder and Time64Array.Builder just as the DateArrayBuilder does for the date array types. ### Are these changes tested? Yes * Closes: apache#34620 Authored-by: Curt Hagenlocher <[email protected]> Signed-off-by: Weston Pace <[email protected]>
After merging your PR, Conbench analyzed the 6 benchmarking runs that have been run so far on merge-commit bebd2bf. There were no benchmark performance regressions. 🎉 The full Conbench report has more details. It also includes information about possible false positives for unstable benchmarks that are known to sometimes produce them. |
…he#36125) ### What changes are included in this PR? Date32Array and Date64Array now support DateOnly values for construction and reading on .NET 6.0 and later. Time32Array and Time64Array now support TimeOnly values for construction and reading on .NET 6.0 and later. A new TimeArrayBuilder type is used to share logic between Time32Array.Builder and Time64Array.Builder just as the DateArrayBuilder does for the date array types. ### Are these changes tested? Yes * Closes: apache#34620 Authored-by: Curt Hagenlocher <[email protected]> Signed-off-by: Weston Pace <[email protected]>
…he#36125) ### What changes are included in this PR? Date32Array and Date64Array now support DateOnly values for construction and reading on .NET 6.0 and later. Time32Array and Time64Array now support TimeOnly values for construction and reading on .NET 6.0 and later. A new TimeArrayBuilder type is used to share logic between Time32Array.Builder and Time64Array.Builder just as the DateArrayBuilder does for the date array types. ### Are these changes tested? Yes * Closes: apache#34620 Authored-by: Curt Hagenlocher <[email protected]> Signed-off-by: Weston Pace <[email protected]>
What changes are included in this PR?
Date32Array and Date64Array now support DateOnly values for construction and reading on .NET 6.0 and later.
Time32Array and Time64Array now support TimeOnly values for construction and reading on .NET 6.0 and later.
A new TimeArrayBuilder type is used to share logic between Time32Array.Builder and Time64Array.Builder just as the DateArrayBuilder does for the date array types.
Are these changes tested?
Yes
DateOnly
andTimeOnly
values on .NET 6. #34620