Unable to delete an Fdb record entry

188 Views Asked by At

Refer to below code: When I try to remove a record that has been saved as tuple.Tuple{"key1", "key2"), The function executes without error but the record is not removed from the database.

Foundationdb.Transact(func(tr fdb.Transaction){
            tr.Clear(tuple.Tuple{"key1", "key2"})
        });

Is there any thing obvious and particular that I am missing. Thanks in advance.

0

There are 0 best solutions below