Le 02/06/2021 à 22:56, Micah Kornfield a écrit :
Any SQL interface to Arrow should follow the SQL standard. So, for instance, if a column has TIMESTAMP type, it should behave as a date-time without a time-zone.At least in bigquery we do the following mapping: SQL TIMESTAMP -> Arrow Timestamp with "UTC" timezone SQL DATETIME -> Arrow Timestamp without a time-zone.
Aren't those exactly the same (i.e. no timezone implicitly means UTC, not local time)?
Regards Antoine.