fix formatting

This commit is contained in:
alpaylan 2024-12-18 17:10:18 -05:00
parent 39b5dbed55
commit cb20ca7e40
5 changed files with 31 additions and 15 deletions

View file

@ -189,12 +189,10 @@ fn maybe_add_table(env: &mut SimulatorEnv, conn: &mut Rc<Connection>) -> Result<
.map(|_| Column::arbitrary(&mut env.rng))
.collect(),
};
let query = Query::Create(Create { table: table.clone() });
let rows = get_all_rows(
env,
conn,
query.to_string().as_str(),
)?;
let query = Query::Create(Create {
table: table.clone(),
});
let rows = get_all_rows(env, conn, query.to_string().as_str())?;
log::debug!("{:?}", rows);
let rows = get_all_rows(
env,