Home
last modified time | relevance | path

Searched refs:oldi (Results 1 – 1 of 1) sorted by relevance

/rocksdb-6.9/utilities/transactions/
Dwrite_prepared_txn_db.cc789 auto oldi = old_snapshots.begin(); in CleanupReleasedSnapshots() local
790 for (; newi != new_snapshots.end() && oldi != old_snapshots.end();) { in CleanupReleasedSnapshots()
791 assert(*newi >= *oldi); // cannot have new snapshots with lower seq in CleanupReleasedSnapshots()
792 if (*newi == *oldi) { // still not released in CleanupReleasedSnapshots()
797 while (oldi != old_snapshots.end() && *oldi == value) { in CleanupReleasedSnapshots()
798 oldi++; in CleanupReleasedSnapshots()
801 assert(*newi > *oldi); // *oldi is released in CleanupReleasedSnapshots()
802 ReleaseSnapshotInternal(*oldi); in CleanupReleasedSnapshots()
803 oldi++; in CleanupReleasedSnapshots()
807 for (; oldi != old_snapshots.end(); oldi++) { in CleanupReleasedSnapshots()
[all …]