leave io faults and fsync query disabled by default

This commit is contained in:
pedrocarlo
2025-06-30 12:23:41 -03:00
parent 4a32f83bd0
commit 251926cd79

View File

@@ -82,9 +82,9 @@ pub struct SimulatorCLI {
default_value_t = false
)]
pub disable_select_optimizer: bool,
#[clap(long, help = "disable FsyncNoWait Property", default_value_t = false)]
#[clap(long, help = "disable FsyncNoWait Property", default_value_t = true)]
pub disable_fsync_no_wait: bool,
#[clap(long, help = "disable FaultyQuery Property", default_value_t = false)]
#[clap(long, help = "disable FaultyQuery Property", default_value_t = true)]
pub disable_faulty_query: bool,
#[clap(long, help = "disable Reopen-Database fault", default_value_t = false)]
pub disable_reopen_database: bool,