Show finished runs

This commit is contained in:
Joscha 2023-08-13 21:42:57 +02:00
parent 98132cc00b
commit cf8ab2884f
8 changed files with 377 additions and 7 deletions

View file

@ -0,0 +1,62 @@
{
"db_name": "SQLite",
"query": "SELECT id, hash, bench_method, start AS \"start: time::OffsetDateTime\", end AS \"end: time::OffsetDateTime\", exit_code, message, reachable FROM runs JOIN commits USING (hash) WHERE id = ? ",
"describe": {
"columns": [
{
"name": "id",
"ordinal": 0,
"type_info": "Text"
},
{
"name": "hash",
"ordinal": 1,
"type_info": "Text"
},
{
"name": "bench_method",
"ordinal": 2,
"type_info": "Text"
},
{
"name": "start: time::OffsetDateTime",
"ordinal": 3,
"type_info": "Text"
},
{
"name": "end: time::OffsetDateTime",
"ordinal": 4,
"type_info": "Text"
},
{
"name": "exit_code",
"ordinal": 5,
"type_info": "Int64"
},
{
"name": "message",
"ordinal": 6,
"type_info": "Text"
},
{
"name": "reachable",
"ordinal": 7,
"type_info": "Int64"
}
],
"parameters": {
"Right": 1
},
"nullable": [
false,
false,
false,
false,
false,
false,
false,
false
]
},
"hash": "26bf8f43e0fa607ddfabb0611ee95c8ed1fef2d1aa76749b660228cd38a84283"
}

View file

@ -0,0 +1,26 @@
{
"db_name": "SQLite",
"query": "SELECT source, text FROM run_output WHERE id = ? ORDER BY idx ASC ",
"describe": {
"columns": [
{
"name": "source",
"ordinal": 0,
"type_info": "Int64"
},
{
"name": "text",
"ordinal": 1,
"type_info": "Text"
}
],
"parameters": {
"Right": 1
},
"nullable": [
false,
false
]
},
"hash": "6ee70f3a692ecb2a4fadfdd28778d74f63be6af7977f73ddd647a2b86e78b49f"
}

View file

@ -0,0 +1,44 @@
{
"db_name": "SQLite",
"query": "SELECT name, value, stddev, unit, direction FROM run_measurements WHERE id = ? ORDER BY name ASC ",
"describe": {
"columns": [
{
"name": "name",
"ordinal": 0,
"type_info": "Text"
},
{
"name": "value",
"ordinal": 1,
"type_info": "Float"
},
{
"name": "stddev",
"ordinal": 2,
"type_info": "Float"
},
{
"name": "unit",
"ordinal": 3,
"type_info": "Text"
},
{
"name": "direction",
"ordinal": 4,
"type_info": "Int64"
}
],
"parameters": {
"Right": 1
},
"nullable": [
false,
false,
true,
true,
true
]
},
"hash": "b65eb154a77e79de390220d3675cc2b1ebe8cb706d2b0e1a0377c88fd6a175c2"
}