mirror of
https://github.com/tursodatabase/limbo.git
synced 2025-08-04 18:18:03 +00:00
fix formatting
This commit is contained in:
parent
39b5dbed55
commit
cb20ca7e40
5 changed files with 31 additions and 15 deletions
|
@ -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,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue