creat table test_string(a sting) using parquet;
insert overwrite test_string values("30000000000000");
insert into test_string values("652440000000");
insert into test_string values("1627282640731");
insert into test_string values("1656932979027");
select from_unixtime(a,'yyyy-MM-dd') from test_string;
To Reproduce