This commit is contained in:
Jarred Sumner
2025-07-14 22:33:59 -07:00
parent 6efb346e68
commit a6f09228af
3 changed files with 2 additions and 4 deletions

Binary file not shown.

View File

@@ -28,9 +28,7 @@ if (+(existingUsers?.[0]?.count ?? existingUsers?.count) < 100) {
}));
// Insert all users
await sql`
INSERT INTO users_bun_bench (first_name, last_name, email, dob) ${sql(users)}
`;
await sql`INSERT INTO users_bun_bench ${sql(users)}`;
}
const type = isBun ? "Bun.sql" : "postgres";

View File

@@ -9,6 +9,6 @@
"typescript": "^5.0.0"
},
"dependencies": {
"postgres": "^3.4.5"
"postgres": "^3.4.7"
}
}