Ranga Reddy created HUDI-8677:
---------------------------------
Summary: Hive is not displaying the timestamp value in micro
seconds
Key: HUDI-8677
URL: https://issues.apache.org/jira/browse/HUDI-8677
Project: Apache Hudi
Issue Type: Bug
Reporter: Ranga Reddy
Fix For: 1.2.0
When we query the hudi table using Hive engine, in hive micro seconds value are
truncated.
Steps to reproduce the issue:
create table test_timestamp(id int, time timestamp) using hudi;insert into
test_timestamp values(1,timestamp('2024-11-28 12:00:00.123456'));select time
from test_timestamp;
--result from spark2024-11-28 12:00:00.123456-- result from hive2024-11-28
12:00:00.123
--
This message was sent by Atlassian Jira
(v8.20.10#820010)