You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@hive.apache.org by "ASF GitHub Bot (Jira)" <ji...@apache.org> on 2021/06/07 00:19:01 UTC

[jira] [Work logged] (HIVE-24748) The result of TimestampWritableV2.toString() is wrong when year is larger than 9999.

     [ https://issues.apache.org/jira/browse/HIVE-24748?focusedWorklogId=607567&page=com.atlassian.jira.plugin.system.issuetabpanels:worklog-tabpanel#worklog-607567 ]

ASF GitHub Bot logged work on HIVE-24748:
-----------------------------------------

                Author: ASF GitHub Bot
            Created on: 07/Jun/21 00:18
            Start Date: 07/Jun/21 00:18
    Worklog Time Spent: 10m 
      Work Description: github-actions[bot] commented on pull request #1953:
URL: https://github.com/apache/hive/pull/1953#issuecomment-855489315


   This pull request has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs.
   Feel free to reach out on the dev@hive.apache.org list if the patch is in need of reviews.


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


Issue Time Tracking
-------------------

    Worklog Id:     (was: 607567)
    Time Spent: 20m  (was: 10m)

> The result of TimestampWritableV2.toString() is wrong when year is larger than 9999.
> ------------------------------------------------------------------------------------
>
>                 Key: HIVE-24748
>                 URL: https://issues.apache.org/jira/browse/HIVE-24748
>             Project: Hive
>          Issue Type: Bug
>          Components: Serializers/Deserializers
>    Affects Versions: All Versions
>         Environment: Master branch
>            Reporter: Qiang.Kang
>            Assignee: Qiang.Kang
>            Priority: Critical
>              Labels: pull-request-available
>          Time Spent: 20m
>  Remaining Estimate: 0h
>
> Hi, I found that `TimestampWritableV2.toString()` can be wrong when year is larger than 9999. Here is what I get:
>  - test code:
> {code:java}
> // code placeholder
> @Test
> public void testTimestampWritableV2toString() {
>   TimestampWritableV2 timestampWritableV2 = new TimestampWritableV2(
>       Timestamp.valueOf("10001-01-01 01:01:23"));
>   
>   assertEquals("+10001-01-01 01:01:23", timestampWritableV2.toString());
> }{code}
>  - output:
> {code:java}
> // code placeholder
> org.junit.ComparisonFailure:
>  Expected :+10001-01-01 01:01:23
>  Actual :+10001-01-01 01:01:2323
> {code}
> The patch below removes some 'wrong' code in `TimestampWritableV2.toString()`, for the reason that the length of `org.apache.hadoop.hive.common.type.Timestamp#toString` can be larger than 19, even its nano-of-second is zero.



--
This message was sent by Atlassian Jira
(v8.3.4#803005)