the current behavior of ODBC is that it ignores the time zone field in Timestamp data, assumes all timestamp data is UTC during interpretation. The Arrow compute ...
create table "my_table" ( "id" int4 primary key generated always as identity, "created_time" TIMESTAMP WITHOUT TIME ZONE not null default current_timestamp, "created_by" text not null ); ERROR ...