blob: 6488f4dc99449692c9075620f6ccc6a4ced8e5f0 [file] [log] [blame]
create table legacy_table (ts timestamp)
stored as orc;
load data local inpath '../../data/files/orc_legacy_mixed_timestamps.orc' into table legacy_table;
select * from legacy_table;
set orc.proleptic.gregorian.default=true;
select * from legacy_table;
drop table legacy_table;