-
-
Notifications
You must be signed in to change notification settings - Fork 16
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
Show users a better error message for unsupported timestamp ranges #5
Comments
Hi, I'm excited to contribute to paradeDB for the first time. |
It's all yours! I just assigned you |
I fixed the issue in the arrow-rs and I'm waiting them to accept my pr |
Closing these as we're archiving this repository for good |
What
Datafusion only supports queries with timestamps from 1677 to 2262 (https://github.com/apache/arrow-datafusion/blob/b7f477237cc91bbdf90e655db181ca4f0a64fc25/datafusion/functions/src/datetime/common.rs#L34). When users try to query with a timestamp outside of this range i.e.
SELECT * FROM t WHERE a < '1650-01-01 01:01:01'::timestamp
they get a confusing error message about nanosecond overflow. We should intercept this error message and show them a more helpful one.Why
How
The text was updated successfully, but these errors were encountered: