Implement queue task deletion

This commit is contained in:
Joscha 2023-08-14 12:41:47 +02:00
parent 7f975a1fd0
commit 2620530cc2
5 changed files with 118 additions and 11 deletions

View file

@ -0,0 +1,32 @@
{
"db_name": "SQLite",
"query": "SELECT hash, message, reachable FROM commits JOIN queue USING (hash) WHERE hash = ? ",
"describe": {
"columns": [
{
"name": "hash",
"ordinal": 0,
"type_info": "Text"
},
{
"name": "message",
"ordinal": 1,
"type_info": "Text"
},
{
"name": "reachable",
"ordinal": 2,
"type_info": "Int64"
}
],
"parameters": {
"Right": 1
},
"nullable": [
false,
false,
false
]
},
"hash": "c1e772c34a0324159ca1ee204806c3774762a3df4c6d06a4ea4df67b105bac00"
}