diff --git a/src/engine/aria/benchmark.ts b/src/engine/aria/benchmark.ts index 58cf8fe..a50827d 100644 --- a/src/engine/aria/benchmark.ts +++ b/src/engine/aria/benchmark.ts @@ -21,7 +21,7 @@ function createTestSchema() { }); } -async function timeIt(name: string, fn: () => Promise): Promise { +async function timeIt(_name: string, fn: () => Promise): Promise { const start = performance.now(); await fn(); return performance.now() - start; @@ -37,7 +37,7 @@ export async function runBenchmarks(): Promise { await engine.createTable(createTestSchema()); // Insert - const rows = []; + const rows: Record[] = []; for (let i = 0; i < size; i++) { rows.push({ id: `${i}`, name: `User${i}`, value: i * 10 }); }