[ https://issues.apache.org/jira/browse/HIVE-24701?focusedWorklogId=548454&page=com.atlassian.jira.plugin.system.issuetabpanels:worklog-tabpanel#worklog-548454 ]
ASF GitHub Bot logged work on HIVE-24701: ----------------------------------------- Author: ASF GitHub Bot Created on: 05/Feb/21 10:23 Start Date: 05/Feb/21 10:23 Worklog Time Spent: 10m Work Description: belugabehr closed pull request #1927: URL: https://github.com/apache/hive/pull/1927 ---------------------------------------------------------------- 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: us...@infra.apache.org Issue Time Tracking ------------------- Worklog Id: (was: 548454) Time Spent: 1h 10m (was: 1h) > Remove String Manipulation from Date Parsing TimestampTZUtil > ------------------------------------------------------------ > > Key: HIVE-24701 > URL: https://issues.apache.org/jira/browse/HIVE-24701 > Project: Hive > Issue Type: Improvement > Reporter: David Mollitor > Assignee: David Mollitor > Priority: Major > Labels: pull-request-available > Time Spent: 1h 10m > Remaining Estimate: 0h > > This operation is pretty slow: > {code:java} > // Converts Date to TimestampTZ. > public static TimestampTZ convert(Date date, ZoneId defaultTimeZone) { > return parse(date.toString(), defaultTimeZone); > } > {code} > To convert from Date to TimestampTZ, it creates a string, then parses it. > Should be able to just look at the epoch time and do the conversion without > all the string manipulation/parsing. -- This message was sent by Atlassian Jira (v8.3.4#803005)