Skip to content

Commit

Permalink
Remove replay sync command
Browse files Browse the repository at this point in the history
  • Loading branch information
talekhinezh committed Nov 6, 2023
1 parent 0e83dfe commit f971a24
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 263 deletions.
259 changes: 0 additions & 259 deletions simulator/src/replay/cmd_sync.rs

This file was deleted.

4 changes: 0 additions & 4 deletions simulator/src/replay/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -7,15 +7,13 @@ mod cmd_execute;
mod cmd_execute_in_memory;
mod cmd_measure;
mod cmd_prepare;
mod cmd_sync;
mod error;

pub use cmd_alloc_dump::*;
pub use cmd_execute::*;
pub use cmd_execute_in_memory::*;
pub use cmd_measure::*;
pub use cmd_prepare::*;
pub use cmd_sync::*;
pub use error::*;

use clap::{Parser, Subcommand};
Expand All @@ -33,7 +31,6 @@ pub enum Command {
Prepare(TxnPrepare),
Execute(TxnExecute),
ExecuteInMemory(TxnExecuteInMemory),
Sync(TxnSync),
Measure(TxnMeasure),
AllocDump(TxnAllocDump),
}
Expand All @@ -45,7 +42,6 @@ pub fn run() -> Result<(), Error> {
Command::Prepare(cmd) => cmd.run(),
Command::Execute(cmd) => cmd.run(),
Command::ExecuteInMemory(cmd) => cmd.run(),
Command::Sync(cmd) => cmd.sync(),
Command::Measure(cmd) => cmd.run(),
Command::AllocDump(cmd) => cmd.run(),
}
Expand Down

0 comments on commit f971a24

Please sign in to comment.