diff --git a/bench/postgres/bun.lockb b/bench/postgres/bun.lockb index 35c8f9d77e..0330a78b1d 100755 Binary files a/bench/postgres/bun.lockb and b/bench/postgres/bun.lockb differ diff --git a/bench/postgres/index.mjs b/bench/postgres/index.mjs index 19618c51a2..09168cd829 100644 --- a/bench/postgres/index.mjs +++ b/bench/postgres/index.mjs @@ -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"; diff --git a/bench/postgres/package.json b/bench/postgres/package.json index 663d54c930..a2539029a3 100644 --- a/bench/postgres/package.json +++ b/bench/postgres/package.json @@ -9,6 +9,6 @@ "typescript": "^5.0.0" }, "dependencies": { - "postgres": "^3.4.5" + "postgres": "^3.4.7" } } \ No newline at end of file