mirror of
https://github.com/aljazceru/turso.git
synced 2026-02-23 17:05:36 +01:00
fix formatting
This commit is contained in:
@@ -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,
|
||||
}
|
||||
|
||||
|
||||
@@ -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));
|
||||
|
||||
Reference in New Issue
Block a user