As part of testing my ongoing WAL work, I have been frequently inserting things like ```sql insert into products(name,price) values (randomblob(1024*512),randomblob(1024*512)); ``` many times in succession due to the need to generate wal frames. Perhaps it's just the size, but sqlite seems to handle it fine, but if we do ```sql select * from users, products limit 1000; ``` Currently `tursodb` will hang for this query, assuming we have done those inserts more than a couple times.