Details
-
Bug
-
Status: Resolved
-
Major
-
Resolution: Duplicate
-
None
-
None
-
None
-
None
Description
When dropping a skewed table the skewed column data is not dropped.
To reproduce:
- In the metastore RDBMS:
- select count from skewed_string_list;
- In BeeLine:
- create table src_skew (key int) skewed by (key) on (1,2,3);
- drop table src_skew;
- In the metastore RDMBS:
- select count from skewed_string_list;
Notice that the count in the RDBMS is increased by 3;
Attachments
Issue Links
- duplicates
-
HIVE-23289 Rows are not removed from the skewed_string_list_values table
- Open