1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
// Copyright 2020 TiKV Project Authors. Licensed under Apache-2.0. //! This file contains the "actions" we perform on a [`crate::storage::mvcc::MvccTxn`] and related //! tests. "Actions" here means a group of more basic operations, eg. //! [`crate::storage::mvcc::MvccReader::load_lock`], //! [`crate::storage::mvcc::MvccTxn::put_write`], which are methods on //! [`crate::storage::mvcc::MvccTxn`], for archiving a certain target. pub mod acquire_pessimistic_lock; pub mod check_data_constraint; pub mod check_txn_status; pub mod cleanup; pub mod commit; pub mod gc; pub mod prewrite; pub mod tests;