You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In foundationdb-rs documentation, it is said that the transaction can retrieve the conflicting keys after setting the option ReportConflictingKeys in a transaction. See Rust Docs Foundationdb - ReportConflictingKeys
But how can I retrive the conflicting keys from txn1_result below? After I commit the transaction, there seems no way for me to retrive that in this Rust code snippet:
let txn_1 = db.create_trx().unwrap();
txn_1.set_option(options::TransactionOption::ReportConflictingKeys).expect("reporting conflict keys should succeed.");let txn1_result = txn_1.commit().await;
The text was updated successfully, but these errors were encountered:
In foundationdb-rs documentation, it is said that the transaction can retrieve the conflicting keys after setting the option
ReportConflictingKeys
in a transaction. See Rust Docs Foundationdb - ReportConflictingKeysBut how can I retrive the conflicting keys from
txn1_result
below? After I commit the transaction, there seems no way for me to retrive that in this Rust code snippet:The text was updated successfully, but these errors were encountered: