feat: initial scaffold data_table_bench (issue 0133)

This commit is contained in:
agent_A
2026-05-22 23:37:50 +02:00
commit 09ccc6848b
7 changed files with 923 additions and 0 deletions
+15
View File
@@ -0,0 +1,15 @@
-- data_table_bench: schema inicial
-- Tabla bench_runs: persiste resultados de cada ejecucion del benchmark.
CREATE TABLE IF NOT EXISTS bench_runs (
id TEXT PRIMARY KEY,
started_at INTEGER NOT NULL,
rows INTEGER NOT NULL,
scenario TEXT NOT NULL,
fps_p50 REAL NOT NULL,
fps_p1 REAL NOT NULL,
mem_rss_mb REAL NOT NULL,
cpu_pct REAL NOT NULL,
duration_s REAL NOT NULL,
commit_sha TEXT NOT NULL DEFAULT '',
summary_json TEXT NOT NULL DEFAULT '{}'
);