[GitHub] [hudi] cdmikechen commented on issue #2544: [SUPPORT]failed to read timestamp column in version 0.7.0 even when HIVE_SUPPORT_TIMESTAMP is enabled

2021-04-26 Thread GitBox
cdmikechen commented on issue #2544: URL: https://github.com/apache/hudi/issues/2544#issuecomment-827219576 @nsivabalan Sure ~ I'll deal with it next week. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL

[GitHub] [hudi] cdmikechen commented on issue #2544: [SUPPORT]failed to read timestamp column in version 0.7.0 even when HIVE_SUPPORT_TIMESTAMP is enabled

2021-04-08 Thread GitBox
cdmikechen commented on issue #2544: URL: https://github.com/apache/hudi/issues/2544#issuecomment-816314674 @li36909 As I known, `TimestampWritableV2` is a hive3 class, we mainly use hive2 lib in hudi.And your class is based on a `MOR` table, my change is based on a `COW` table. I

[GitHub] [hudi] cdmikechen commented on issue #2544: [SUPPORT]failed to read timestamp column in version 0.7.0 even when HIVE_SUPPORT_TIMESTAMP is enabled

2021-03-30 Thread GitBox
cdmikechen commented on issue #2544: URL: https://github.com/apache/hudi/issues/2544#issuecomment-810215526 @nsivabalan hive2 use `java.sql.timestamp` to describe timestamp type and hive3 use a new custom timestamp class to describe it. So that hive2 and hive3 have two different way

[GitHub] [hudi] cdmikechen commented on issue #2544: [SUPPORT]failed to read timestamp column in version 0.7.0 even when HIVE_SUPPORT_TIMESTAMP is enabled

2021-02-09 Thread GitBox
cdmikechen commented on issue #2544: URL: https://github.com/apache/hudi/issues/2544#issuecomment-776007206 I think it is still a problem in Hive2. In Hive2, Hive can not identify logical timestamp type. This is an