-
Notifications
You must be signed in to change notification settings - Fork 4k
GH-30036: [C++] Timezone-aware kernels should handle offset strings (e.g. "+04:30") #12865
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
Conversation
|
@pitrou @lidavidm @jorisvandenbossche this is complete yet but I would like to validate the approach with you before I continue. Do you feel this makes enough sense to complete the PR? |
What is this comment in reference to? It seems this PR would handle 30 minute iterations correctly? |
Current implementation can handle fixed offsets of iterations of one hour. This PR would enable offsets of arbitrary number of minutes. So primary use of that would indeed be to operate in |
ead6a33 to
b7c3038
Compare
0f1f432 to
53ec435
Compare
Co-authored-by: Antoine Pitrou <[email protected]>
|
Thank you for the review @lidavidm ! |
|
@github-actions crossbow submit -g cpp |
|
Revision: 936d020 Submitted crossbow builds: ursacomputing/crossbow @ actions-744a53bba9 |
|
After merging your PR, Conbench analyzed the 2 benchmarking runs that have been run so far on merge-commit bf342b2. There were no benchmark performance regressions. 🎉 The full Conbench report has more details. It also includes information about 3 possible false positives for unstable benchmarks that are known to sometimes produce them. |
…ings (e.g. "+04:30") (apache#12865) ARROW-14477: apache#30036 Currently timestamp arrays have unit `timestamp(unit, zone name)`. This would add "offset timezones" where timestamp array would also support units like `timestamp(unit, "+/-HH:MM")`. * GitHub Issue: apache#30036 Lead-authored-by: Rok Mihevc <[email protected]> Co-authored-by: Rok <[email protected]> Co-authored-by: Antoine Pitrou <[email protected]> Signed-off-by: Rok Mihevc <[email protected]>
ARROW-14477: #30036
Currently timestamp arrays have unit
timestamp(unit, zone name). This would add "offset timezones" where timestamp array would also support units liketimestamp(unit, "+/-HH:MM").