- Sponsor
-
Notifications
You must be signed in to change notification settings - Fork 95
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
Support for 'infinity' timestamps #690
Comments
Interesting. I actually think this is a problem with Harlequin core, or more specifically, the data table implementation. We use Apache Arrow to store the data returned by the query, and I don't think Arrow supports infinity timestamps (they have an |
Turns out this error is a "feature" of psycopg3: https://www.psycopg.org/psycopg3/docs/basic/from_pg2.html#no-default-infinity-dates-handling For comparison, duckdb also supports infinity timestamps, and while the
I think that's the better experience, so I'm going to do that, and then also probably render the max timestamps as |
Postgres supports infinity timestamps.
However, this adapter doesn't:
It is, however, a valid and useful range to support, particularly in the context of temporal tables.
The text was updated successfully, but these errors were encountered: