Zoltan Haindrich created HIVE-23289:
---------------------------------------
Summary: Rows are not removed from the skewed_string_list_values
table
Key: HIVE-23289
URL: https://issues.apache.org/jira/browse/HIVE-23289
Project: Hive
Issue Type: Bug
Reporter: Zoltan Haindrich
initialize sysdb as well
{code}
select * from sys.skewed_string_list_values;
-- empty (no skewed stuff)
create external table smt_sysdb_src_skew (key int) skewed by (key) on (1,2,3);
select * from sys.skewed_string_list_values;
-- 3 rows
drop table smt_sysdb_src_skew;
select * from sys.skewed_string_list_values;
-- still..3 rows
create external table smt_sysdb_src_skew (key int) skewed by (key) on (1,2,3);
-- now we have 6 rows; the biggest issue is that the list_id is the same
{code}
--
This message was sent by Atlassian Jira
(v8.3.4#803005)