[ https://issues.apache.org/jira/browse/HIVE-14544?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]
Stamatis Zampetakis updated HIVE-14544: --------------------------------------- Fix Version/s: (was: 2.1.0) I cleared the fixVersion field since this ticket is not resolved. Please review this ticket and if the fix is already committed to a specific version please set the version accordingly and mark the ticket as RESOLVED. According to the JIRA guidelines (https://cwiki.apache.org/confluence/display/Hive/HowToContribute) the fixVersion should be set only when the issue is resolved/closed. > LOAD DATA statement appends .0 to the partition name > ---------------------------------------------------- > > Key: HIVE-14544 > URL: https://issues.apache.org/jira/browse/HIVE-14544 > Project: Hive > Issue Type: Bug > Components: Metastore > Affects Versions: 2.1.0 > Reporter: Oleksiy Sayankin > Assignee: Oleksiy Sayankin > Priority: Major > Attachments: HIVE-14544.1.patch > > > *STEP 1. Create file with data:* > {noformat} > echo 1 > /tmp/data.file > {noformat} > *STEP 2. Create table in hive:* > {noformat} > CREATE TABLE `issue` (`id` INT) PARTITIONED BY (`ts` TIMESTAMP); > {noformat} > *STEP 3. Insert data into table:* > {noformat} > SET hive.exec.dynamic.partition.mode=nonstrict; > INSERT INTO TABLE `issue` PARTITION (`ts`) VALUES (1,'1970-01-01 > 00:00:00'),(2,'1980-01-01 00:00:00'),(3,'1990-01-01 00:00:00'); > {noformat} > *STEP 4. Load data into table using hive:* > {noformat} > LOAD DATA LOCAL INPATH '/tmp/data.file' OVERWRITE INTO TABLE `issue` > PARTITION (`ts`='2000-01-01 00:00:00'); > {noformat} > *STEP 5. Run show partitions query:* > {noformat} > SHOW PARTITIONS `issue`; > {noformat} > *EXPECTED RESULT:* > {noformat} > ts=1970-01-01 00%3A00%3A00 > ts=1980-01-01 00%3A00%3A00 > ts=1990-01-01 00%3A00%3A00 > ts=2000-01-01 00%3A00%3A00 > {noformat} > *ACTUAL RESULT* > We've gotten partitions with different precision > {noformat} > ts=1970-01-01 00%3A00%3A00 > ts=1980-01-01 00%3A00%3A00 > ts=1990-01-01 00%3A00%3A00 > ts=2000-01-01 00%3A00%3A00.0 > {noformat} -- This message was sent by Atlassian Jira (v8.20.10#820010)