I use the default procedure generated by voltdb to update the below table,
schema:
create table sys_sec_user_org_role(
user_id bigint not null,
org_id integer not null,
role_id integer not null,
primary key(user_id,role_id,org_id)
);
partition table sys_sec_user_org_role on column user_id;
and then the default procedures were created successfully,I call procedures in the following order
insert:exec SYS_SEC_USER_ORG_ROLE.insert 2 3 4
sucess:modified_tuples:1
and then delete the inserted row
delete:exec SYS_SEC_USER_ORG_ROLE.delete 2 3 4
modified_tuples:0
I don't know why the default delete or update don't work on this table while most cases work.