mirror of
https://github.com/tursodatabase/limbo.git
synced 2025-08-04 18:18:03 +00:00
fix num_values detection + emitting correct column for temp_table + tests
This commit is contained in:
parent
e3fd1e589e
commit
ee93316c46
3 changed files with 37 additions and 4 deletions
|
@ -332,8 +332,8 @@ fn test_insert_after_big_blob() -> anyhow::Result<()> {
|
|||
let tmp_db = TempDatabase::new_with_rusqlite("CREATE TABLE temp (t1 BLOB, t2 INTEGER)");
|
||||
let conn = tmp_db.connect_limbo();
|
||||
|
||||
conn.execute("insert into temp values (zeroblob (262144))")?;
|
||||
conn.execute("insert into temp values (1)")?;
|
||||
conn.execute("insert into temp(t1) values (zeroblob (262144))")?;
|
||||
conn.execute("insert into temp(t2) values (1)")?;
|
||||
|
||||
Ok(())
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue