You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Mar 29, 2023. It is now read-only.
Casting from date to timestamp results in TypeError: BigQuery does not support timestamps with timezones.
It looks like Ibis defaults to casting a date to UTC:
>>> ibis.table(ibis.schema([('date', 'date')]))['date'].cast('timestamp')
UnboundTable[r0, name=unbound_table_2]
date date
cast(date, timestamp('UTC')): timestamp('UTC') = Cast
date: date = r0.date
to:
timestamp('UTC')
The text was updated successfully, but these errors were encountered:
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Casting from date to timestamp results in
TypeError: BigQuery does not support timestamps with timezones
.It looks like Ibis defaults to casting a date to UTC:
The text was updated successfully, but these errors were encountered: