--persist-to=/path/to/file to persist data to a specific location but no luck and on seeding I couldn't find any relevant info.prestart script that runs a ts file to init local sqlite and seed itwrangler d1 migrations, you can use a migration to seed the database or if you want a more programatic approach scroll up a bit, we had a discussion about possibilites just a few hours ago--persist-to=/path/to/filepreview_database_id (per https://developers.cloudflare.com/d1/platform/migrations/#wrangler-customizations) and use wrangler d1 migrations apply <db-name> --local -> you can apply migrations locally to seed the DB. As above, you can also do that programatically via your test harness
name.sqlite file?wrangler d1 migrations inside your tests: the example shows that.db. Is there a way to change that by just changing binding in wrangler config?wrangler d1 execute --local --comand="SELECT NOTHING"Error: statement too long
cause should not be deprecated, it's still thereError: too many terms in compound SELECT (coming from a select {condition} union all select {another condition} ).. I suppose I'm wondering what SQLite differences would account for this seeing that the query works in the regular backend but errors out in the experimental?SQLITE_LIMIT_COMPOUND_SELECT set to 3⛅️ wrangler 3.1.0 (update available 3.1.1)causeError: too many terms in compound SELECTselect {condition} union all select {another condition} SQLITE_LIMIT_COMPOUND_SELECT3