[ 
https://issues.apache.org/jira/browse/IMPALA-10946?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Gergely Fürnstáhl reassigned IMPALA-10946:
------------------------------------------

    Assignee: Gergely Fürnstáhl

> RECOVER PARTITIONS might create non-existing partitions
> -------------------------------------------------------
>
>                 Key: IMPALA-10946
>                 URL: https://issues.apache.org/jira/browse/IMPALA-10946
>             Project: IMPALA
>          Issue Type: Bug
>          Components: Catalog, Frontend
>            Reporter: Zoltán Borók-Nagy
>            Assignee: Gergely Fürnstáhl
>            Priority: Major
>              Labels: ramp-up
>
> The following commands reproduce the bug:
> {noformat}
> create table test_table (id int)
> partitioned by (part_field string)
> stored as parquet
> LOCATION ‘/test-warehouse/abc/test’;
> insert into test_table (id, part_field) select 1, ‘abc+’;
> show partitions test_table; ----> it will show one partition “abc+”
> alter table test_table recover partitions;
> show partitions test_table; ----> result is showing two partitions, “abc” and 
> “abc+”
> {noformat}
> The + character can occur anywhere in the string, RECOVER PARTITIONS will 
> create a partition where the + is replaced by a space.
> Seems like other characters don't cause this bug.



--
This message was sent by Atlassian Jira
(v8.20.1#820001)

---------------------------------------------------------------------
To unsubscribe, e-mail: issues-all-unsubscr...@impala.apache.org
For additional commands, e-mail: issues-all-h...@impala.apache.org

Reply via email to