fix formatting

This commit is contained in:
alpaylan
2025-02-11 14:15:00 -05:00
parent c133bbdd29
commit babf33bafa
2 changed files with 9 additions and 5 deletions

View File

@@ -49,10 +49,7 @@ pub struct SimulatorCLI {
help = "enable watch mode that reruns the simulation on file changes"
)]
pub watch: bool,
#[clap(
long,
help = "run differential testing between sqlite and Limbo"
)]
#[clap(long, help = "run differential testing between sqlite and Limbo")]
pub differential: bool,
}

View File

@@ -173,7 +173,14 @@ pub(crate) fn execute_plans(
last_execution.interaction_index = state.interaction_pointer;
last_execution.secondary_index = state.secondary_pointer;
// Execute the interaction for the selected connection
match execute_plan(&mut env, &mut rusqlite_env, connection_index, plans, states, rusqlite_states) {
match execute_plan(
&mut env,
&mut rusqlite_env,
connection_index,
plans,
states,
rusqlite_states,
) {
Ok(_) => {}
Err(err) => {
return ExecutionResult::new(history, Some(err));