aboutsummaryrefslogtreecommitdiff
path: root/bench/sqlite/deno.js
diff options
context:
space:
mode:
authorGravatar Mathias Lafeldt <mathias.lafeldt@gmail.com> 2023-02-20 15:52:33 +0100
committerGravatar GitHub <noreply@github.com> 2023-02-20 08:52:33 -0600
commit8bcf64c881447b29a96d272bc9af007c5fae9e01 (patch)
tree2aabda5c541d945b449470bb0056f205be5b00ad /bench/sqlite/deno.js
parentbcb7be4909d897a05c0ea0994953f3cdfbd5219c (diff)
downloadbun-8bcf64c881447b29a96d272bc9af007c5fae9e01.tar.gz
bun-8bcf64c881447b29a96d272bc9af007c5fae9e01.tar.zst
bun-8bcf64c881447b29a96d272bc9af007c5fae9e01.zip
Fix Deno SQLite benchmark (#2112)
Deno has removed direct access to Deno.core: https://deno.com/blog/v1.30#removal-of-internal-denocore As a result, a newer version of sqlite3 is required: https://deno.land/x/sqlite3@0.8.0/src/util.ts?source#L19
Diffstat (limited to 'bench/sqlite/deno.js')
-rw-r--r--bench/sqlite/deno.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/bench/sqlite/deno.js b/bench/sqlite/deno.js
index 1d7cf7fb8..821cf5149 100644
--- a/bench/sqlite/deno.js
+++ b/bench/sqlite/deno.js
@@ -1,4 +1,4 @@
-import { Database } from "https://deno.land/x/sqlite3@0.7.2/mod.ts";
+import { Database } from "https://deno.land/x/sqlite3@0.8.0/mod.ts";
import { run, bench } from "../node_modules/mitata/src/cli.mjs";
const db = new Database("./src/northwind.sqlite");