test work

This commit is contained in:
John Smith
2023-06-18 18:47:39 -04:00
parent b8e5039251
commit b6e055e47d
21 changed files with 664 additions and 171 deletions

View File

@@ -884,7 +884,7 @@ pub extern "C" fn table_db_transaction_store(port: i64, id: u32, col: u32, key:
tdbt.clone()
};
tdbt.store(col, &key, &value);
tdbt.store(col, &key, &value)?;
APIRESULT_VOID
});
}
@@ -908,7 +908,7 @@ pub extern "C" fn table_db_transaction_delete(port: i64, id: u32, col: u32, key:
tdbt.clone()
};
tdbt.delete(col, &key);
tdbt.delete(col, &key)?;
APIRESULT_VOID
});
}