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
Implement Drop on AccessGuardMut and AccessGuardMutInPlace, which requires that these be dropped
before the Table they borrow from.
This fixes a critical bug where the accessor could outlive the Table, and be dropped after the
transaction had already committed. This could cause data loss due to the data in the accessor
being written out after the transaction had already completed.
Remove Legacy type. To migrate off the Legacy type, use the Legacy type in the 3.x release
and copy the data to a table with plain tuples, before upgrading to the 4.x release.