This assert:
WT_RET_ASSERT(session, WT_DIAGNOSTIC_PREPARED, *updp != NULL || op->btree->collator == NULL, WT_NOTFOUND, "unable to locate update associated with a prepared operation");
Should've been:
WT_RET_ASSERT(session, WT_DIAGNOSTIC_PREPARED, *updp != NULL || op->btree->collator != NULL, WT_NOTFOUND, "unable to locate update associated with a prepared operation");
In it's current form it is unlikely to fire under any conditions.
- is caused by
-
WT-11424 WT_CURSOR.search: timed out with prepare-conflict
- Closed