-
Notifications
You must be signed in to change notification settings - Fork 2.6k
fix(jdbc): support fractional seconds in getTime #10707
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
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.
TIME_TZ is not horribly important but we should make sure it works before 1.0.
return null; | ||
} | ||
|
||
if (isType(DuckDBColumnType.TIME)) { |
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.
Should this handle TIME_TZ
too?
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.
I don't think it really makes sense to handle TIME_TZ in the getLocalTime method?
Thanks! |
Merge pull request duckdb/duckdb#11072 from Mytherin/parquetprogress Merge pull request duckdb/duckdb#10707 from Mause/bugfix/jdbc-get-time Merge pull request duckdb/duckdb#10831 from krlmlr/f-ext-patch Merge pull request duckdb/duckdb#11070 from mariotaddeucci/code-quality-pep8-compliant
Also cleans up some TODO's I left a while back
Fixes #10682