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

@@ -817,7 +817,7 @@ pub fn table_db_transaction_store(id: u32, col: u32, key: String, value: String)
tdbt.clone()
};
tdbt.store(col, &key, &value);
tdbt.store(col, &key, &value)?;
APIRESULT_UNDEFINED
})
}
@@ -836,7 +836,7 @@ pub fn table_db_transaction_delete(id: u32, col: u32, key: String) -> Promise {
tdbt.clone()
};
tdbt.delete(col, &key);
tdbt.delete(col, &key)?;
APIRESULT_UNDEFINED
})
}