Fetch and process commits

This commit is contained in:
Joscha 2023-10-23 20:04:35 +02:00
parent e1261aea96
commit 603e716638
6 changed files with 301 additions and 22 deletions

View file

@ -0,0 +1,26 @@
{
"db_name": "SQLite",
"query": "SELECT child, parent FROM commit_links JOIN commits ON hash = child WHERE reachable = 2 ORDER BY hash ASC ",
"describe": {
"columns": [
{
"name": "child",
"ordinal": 0,
"type_info": "Text"
},
{
"name": "parent",
"ordinal": 1,
"type_info": "Text"
}
],
"parameters": {
"Right": 0
},
"nullable": [
false,
false
]
},
"hash": "f9eefc496eb423eb9a73767d3ff17784fd2f8597021bc22657b9211825916dc2"
}

View file

@ -0,0 +1,38 @@
{
"db_name": "SQLite",
"query": "SELECT hash, author, committer_date AS \"committer_date: time::OffsetDateTime\", message FROM commits WHERE reachable = 2 ORDER BY hash ASC ",
"describe": {
"columns": [
{
"name": "hash",
"ordinal": 0,
"type_info": "Text"
},
{
"name": "author",
"ordinal": 1,
"type_info": "Text"
},
{
"name": "committer_date: time::OffsetDateTime",
"ordinal": 2,
"type_info": "Text"
},
{
"name": "message",
"ordinal": 3,
"type_info": "Text"
}
],
"parameters": {
"Right": 0
},
"nullable": [
false,
false,
false,
false
]
},
"hash": "fa9d5c2db5228e513a4c50f1b85b6782312deef803ed6231658c6721a26a3639"
}