Peter Vary created HIVE-17230:
---------------------------------
Summary: Timestamp format different in HiveCLI and Beeline
Key: HIVE-17230
URL: https://issues.apache.org/jira/browse/HIVE-17230
Project: Hive
Issue Type: Bug
Components: Beeline, CLI
Reporter: Peter Vary
Assignee: Peter Vary
The issue can be reproduced with the following commands:
{code}
create table timestamp_test(t timestamp);
insert into table timestamp_test values('2000-01-01 01:00:00');
select * from timestamp_test;
{code}
The timestamp is displayed without nanoseconds in HiveCLI:
{code}
2000-01-01 01:00:00
{code}
When the exact same timestamp is displayed in BeeLine it displays:
{code}
2000-01-01 01:00:00.0
{code}
--
This message was sent by Atlassian JIRA
(v6.4.14#64029)