Wrong result for count(*) in hive table

后端 未结 3 1334
野的像风
野的像风 2021-01-02 08:35

I have created a table in HIVE

CREATE TABLE IF NOT EXISTS daily_firstseen_analysis (
    firstSeen         STRING,
    category          STRING,
    circle           


        
3条回答
  •  悲&欢浪女
    2021-01-02 09:01

    I execute ANALYZE TABLE ... at first is OK, but raise error when i try again.so i try:

    hive> REFRESH TABLE daily_firstseen_analysis;
    hive> SELECT COUNT(*) FROM daily_firstseen_analysis;
    

    this is explain

提交回复
热议问题