Home
last modified time | relevance | path

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

/rocksdb-6.9/utilities/transactions/
Dwrite_prepared_transaction_test.cc1288 ASSERT_EQ(wp_db->max_evicted_seq_, new_max); in TEST_P()
1349 auto last_max = wp_db->max_evicted_seq_.load(); in TEST_P()
1352 ASSERT_LT(last_max, wp_db->max_evicted_seq_.load()); in TEST_P()
1354 ASSERT_LT(wp_db->max_evicted_seq_.load(), last_seq); in TEST_P()
1487 ASSERT_EQ(snap_seq, wp_db->max_evicted_seq_); in TEST_P()
1844 ASSERT_LE(prep_seq_0, wp_db->max_evicted_seq_); in TEST_P()
1845 ASSERT_LE(prep_seq_1, wp_db->max_evicted_seq_); in TEST_P()
1897 ASSERT_LE(prep_seq_0, wp_db->max_evicted_seq_); in TEST_P()
1898 ASSERT_LE(prep_seq_2, wp_db->max_evicted_seq_); in TEST_P()
2014 ASSERT_LE(snap_seq, wp_db->max_evicted_seq_); in TEST_P()
[all …]
Dwrite_prepared_txn_db.h171 max_evicted_seq_lb = max_evicted_seq_.load(std::memory_order_acquire);
198 max_evicted_seq_ub = max_evicted_seq_.load(std::memory_order_acquire);
252 max_evicted_seq_ub = max_evicted_seq_.load(std::memory_order_acquire);
752 std::atomic<uint64_t> max_evicted_seq_ = {}; variable
1099 SequenceNumber max = max_evicted_seq_.load(order); in ValidateSnapshot()
Dwrite_prepared_txn_db.cc53 SequenceNumber prev_max = max_evicted_seq_; in Initialize()
451 seq, max_evicted_seq_.load()); in AddPrepared()
487 auto prev_max = max_evicted_seq_.load(std::memory_order_acquire); in AddCommitted()
655 !max_evicted_seq_.compare_exchange_weak(updated_prev_max, new_max, in AdvanceMaxEvictedSeq()
759 if (snap_seq <= max_evicted_seq_.load(std::memory_order_acquire)) { in ReleaseSnapshotInternal()
Dwrite_unprepared_txn_db.cc317 SequenceNumber prev_max = max_evicted_seq_; in Initialize()