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 2020/06/02 10:35:00 UTC

[jira] [Work logged] (HIVE-23358) MSCK REPAIR should remove all insignificant zeroes from partition values (for numeric datatypes) before creating the partitions

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

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

                Author: ASF GitHub Bot
            Created on: 02/Jun/20 10:34
            Start Date: 02/Jun/20 10:34
    Worklog Time Spent: 10m 
      Work Description: adesh-rao opened a new pull request #1050:
URL: https://github.com/apache/hive/pull/1050


   
   
   Reference for converting hive types to java
   Hive datatypes: https://cwiki.apache.org/confluence/display/Hive/LanguageManual+Types
   Java Datatypes: https://docs.oracle.com/javase/tutorial/java/nutsandbolts/datatypes.html


----------------------------------------------------------------
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: 440048)
    Remaining Estimate: 0h
            Time Spent: 10m

> MSCK REPAIR should remove all insignificant zeroes from partition values (for numeric datatypes) before creating the partitions
> -------------------------------------------------------------------------------------------------------------------------------
>
>                 Key: HIVE-23358
>                 URL: https://issues.apache.org/jira/browse/HIVE-23358
>             Project: Hive
>          Issue Type: Bug
>          Components: Standalone Metastore
>    Affects Versions: 4.0.0
>            Reporter: Adesh Kumar Rao
>            Assignee: Adesh Kumar Rao
>            Priority: Minor
>          Time Spent: 10m
>  Remaining Estimate: 0h
>
> For the following scenario
> 1. Have partitioned data path as follows.
> hdfs://mycluster/datapath/t1/year=2020/month=03/day=10
> hdfs://mycluster/datapath/t1/year=2020/month=03/day=11
> 2. create external table t1 (key int, value string) partitioned by (Year int, Month int, Day int) stored as orc location hdfs://mycluster/datapath/t1'';
> 3. msck repair table t1;
> 4. show partitions t1; 
> {noformat}
> +----------------------------+
> |         partition          |
> +----------------------------+
> | year=2020/month=03/day=10  |
> | year=2020/month=03/day=11 |
> +----------------------------+
> {noformat}
> 5.show table extended like 't1' partition (Year=2020, Month=03, Day=11); 
> will throw an error:
> {noformat}
> Error: Error while compiling statement: FAILED: SemanticException [Error 10006]: Partition not found {year=2020, month=3, day=11} (state=42000,code=10006)
> {noformat}
> When the partition directory are created without the extra zeroes, this works fine.
> {noformat}
> hdfs://mycluster/datapath/t1/year=2020/month=3/day=10
> hdfs://mycluster/datapath/t1/year=2020/month=3/day=11
> {noformat}
> This happens because while searching for partitions, hive strips the extra "0" in month key and then queries the metastore (partSpec="year=2020/month=3/day=10") which returns no rows.



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