Details
-
Task
-
Status: Closed
-
Blocker
-
Resolution: Done
-
None
Description
Allow to delete/update using non-pk fields
create table h0 ( id int, name string, price double ) using hudi options (primaryKey = 'id'); update h0 set price = 10 where name = 'foo'; delete from h0 where name = 'foo';