-
Notifications
You must be signed in to change notification settings - Fork 1.2k
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
Fix issue with "to_date" failing to process dates later than year 2262 #12227
Merged
+256
−16
Commits on Aug 28, 2024
-
Fix to_date: Support date values greater than year 2262
Due to using nanoseconds as an intermediate state, the values for dates processed via "to_date" cannot be later than the year 2262. The Arrow datatype for Date32 and Date64 supports much larger values. The statements in some areas in the code that the usage of nanoseconds is imposed by Arrow is simply wrong. The Date32 type stores the number of days since epoch. The Date64 type stores the milliseconds (NOT nanoseconds) since epoch. Both Date32 and Date64 can therefore massively exceed the year 2262. See: https://arrow.apache.org/docs/cpp/api/datatype.html
Configuration menu - View commit details
-
Copy full SHA for 6dcaf91 - Browse repository at this point
Copy the full SHA 6dcaf91View commit details
Commits on Aug 29, 2024
-
Configuration menu - View commit details
-
Copy full SHA for caaa044 - Browse repository at this point
Copy the full SHA caaa044View commit details -
Configuration menu - View commit details
-
Copy full SHA for e1abab0 - Browse repository at this point
Copy the full SHA e1abab0View commit details
Commits on Aug 30, 2024
-
Configuration menu - View commit details
-
Copy full SHA for 88d7a15 - Browse repository at this point
Copy the full SHA 88d7a15View commit details -
Configuration menu - View commit details
-
Copy full SHA for 1128d0e - Browse repository at this point
Copy the full SHA 1128d0eView commit details -
Configuration menu - View commit details
-
Copy full SHA for 9300c9a - Browse repository at this point
Copy the full SHA 9300c9aView commit details
Commits on Aug 31, 2024
-
Configuration menu - View commit details
-
Copy full SHA for 55fd280 - Browse repository at this point
Copy the full SHA 55fd280View commit details
Commits on Sep 2, 2024
-
Configuration menu - View commit details
-
Copy full SHA for d013965 - Browse repository at this point
Copy the full SHA d013965View commit details
Commits on Sep 5, 2024
-
Configuration menu - View commit details
-
Copy full SHA for 26c1d8f - Browse repository at this point
Copy the full SHA 26c1d8fView commit details -
Configuration menu - View commit details
-
Copy full SHA for aaedb25 - Browse repository at this point
Copy the full SHA aaedb25View commit details
Commits on Sep 6, 2024
-
Configuration menu - View commit details
-
Copy full SHA for e78d750 - Browse repository at this point
Copy the full SHA e78d750View commit details
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.