has anyone tried inserting a very large table into D1? i just get stuck in this stage:
has anyone tried inserting a very large table into D1? i just get stuck in this stage:

The spellfix1 virtual table is not included in the SQLite amalgamation and is not a part of any standard SQLite build

yarn dev, I want to use a local D1 created with npx wrangler d1 somecommand --local in api/foo/bar/route.ts. However, even after referring to the following page, I can't seem to bind it properly in my local environment. 
wrangler d1 execute like you did;await.{"served_by":"v3-prod","duration":0.6271,"changes":0,"last_row_id":0,"changed_db":false,"size_after":144568320,"rows_read":1,"rows_written":0}yarn devnpx wrangler d1 somecommand --localapi/foo/bar/route.tswrangler d1 execute;{"served_by":"v3-prod","duration":0.6271,"changes":0,"last_row_id":0,"changed_db":false,"size_after":144568320,"rows_read":1,"rows_written":0}const db = getDrizzle(d1: D1Database) => {
if (!db.cached) {
db.cached = drizzle(d1);
}
return db;
}
export default {
async fetch(request: Request, env: Env) {
const db = getDrizzle(env.DB);
...
}
}