> > Aren't those exactly the same (i.e. no timezone implicitly means UTC, > not local time)?
Kind of, the reason we went with this approach is this sentence from the specification: "the data is "time zone naive" and shall be displayed *as is* to the user, not localized to the locale of the user.", which seemed like the closest match for what Date times actually does. Computationally this isn't really ideal. -Micah On Thu, Jun 3, 2021 at 12:32 AM Antoine Pitrou <anto...@python.org> wrote: > > 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. >