oap-project / gazelle_plugin

Native SQL Engine plugin for Spark SQL with vectorized SIMD optimizations.
Apache License 2.0
256 stars 77 forks source link

from_unixtime parse error with long value #1210

Open jackylee-ch opened 1 year ago

jackylee-ch commented 1 year ago

To Reproduce

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;