We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
import datetime import ibis ibis.__version__ # '9.1.0' literal = ibis.literal(datetime.time(12, 34, 56, 789101)) literal # datetime.time(12, 34, 56, 789101) type(literal) # ibis.expr.types.temporal.TimeScalar ibis.to_sql(literal, dialect="bigquery") # SELECT time(12, 34, 56) AS `datetime_time_12_34_56_789101` ibis.to_sql(literal, dialect="duckdb") # SELECT MAKE_TIME(12, 34, 56.789101) AS "datetime.time(12, 34, 56, 789101)"
9.1.0
BigQuery
N/A
The text was updated successfully, but these errors were encountered:
fix(bigquery): support microseconds in time literals (#9610)
c876abc
Closes #9609.
Successfully merging a pull request may close this issue.
What happened?
What version of ibis are you using?
9.1.0
What backend(s) are you using, if any?
BigQuery
Relevant log output
Code of Conduct
The text was updated successfully, but these errors were encountered: