0
create table temp TBLPROPERTIES('numRows'='-1') as select * from test_table limit 10;
show tblproperties temp("numRows");
=> 1
insert into table temp select * from test_table limit 10;
show tblproperties temp("numRows");
=> 11 (10 + 1(earlier)
을 보여줍니다. 왜이 동작입니까?하이브 : 나는 그것을 제대로 <code>numRows</code>를 업데이트 한 다음 삽입 쿼리를 사용하는 경우 numRows의의 tblpropery 잘못 계산에게