-
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-41594: [Go] Support reading date64
type & properly validate list-like types
#41595
Conversation
@zeroshade I've been reviewing one of our libraries & found this. |
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.
overall this looks great, just a few nitpicks
@zeroshade I'd like to also ask to port it to v16, as we're using it & it's a blocker to wait for the v17 release |
@raulcd since we're already doing a 16.1.0 release, do you think we could get this into it? |
@candiduslynx can you also add a test for this? |
|
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.
LGTM gonna wait to merge until I hear back from @raulcd about potentially adding this to the 16.1.0 release
@github-actions crossbow submit go |
Revision: b70d470 Submitted crossbow builds: ursacomputing/crossbow @ actions-ef3aae34bf |
I think I broke that by removing my fork 😄 |
no worries, I'll test this on the maintenance branch release before creating a release candidate just to validate none of the release jobs break |
After merging your PR, Conbench analyzed the 5 benchmarking runs that have been run so far on merge-commit 5252c6c. There were no benchmark performance regressions. 🎉 The full Conbench report has more details. |
…-like types (#41595) This PR includes 2 fixes: 1. support reading `date64` columns (as write is supported) 2. properly validate list-like data types (list of unsupported is unsupported) ### Rationale for this change See #41594 ### What changes are included in this PR? 1. Added `date64` reading & conversion funcs similar to `date32` 2. Refactored date type validation ### Are these changes tested? a55cd53 ### Are there any user-facing changes? No. * GitHub Issue: #41594 Authored-by: candiduslynx <candiduslynx@gmail.com> Signed-off-by: Matt Topol <zotthewizard@gmail.com>
Just confirming for you @candiduslynx, this did get included in the v16.1.0 release |
…e list-like types (apache#41595) This PR includes 2 fixes: 1. support reading `date64` columns (as write is supported) 2. properly validate list-like data types (list of unsupported is unsupported) ### Rationale for this change See apache#41594 ### What changes are included in this PR? 1. Added `date64` reading & conversion funcs similar to `date32` 2. Refactored date type validation ### Are these changes tested? a55cd53 ### Are there any user-facing changes? No. * GitHub Issue: apache#41594 Authored-by: candiduslynx <candiduslynx@gmail.com> Signed-off-by: Matt Topol <zotthewizard@gmail.com>
This PR includes 2 fixes:
date64
columns (as write is supported)Rationale for this change
See #41594
What changes are included in this PR?
date64
reading & conversion funcs similar todate32
Are these changes tested?
a55cd53
Are there any user-facing changes?
No.
date64
value from CSV while write is supported #41594