You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Similarly, if there is no primary key and no partition table, an Insert over write will be written to multiple directories, resulting in data loss from Hive
What happened?
create table test_arctic_10 (id int , name string, dt string) using arctic partitioned by (dt);
insert overwrite test_arctic_10 values (1, 'aaa','1'), (2, 'bbb','2'), (3, 'ccc','1');
failed
but insert overwrite test_arctic_10 values (1, 'aaa','1'), (2, 'bbb','2'), (3, 'ccc','3');
it will success!
Affects Versions
0.3.1
What engines are you seeing the problem on?
No response
How to reproduce
No response
Relevant log output
No response
Anything else
No response
Code of Conduct
The text was updated successfully, but these errors were encountered: