allow skipping 2min timer

This commit is contained in:
aecsocket
2026-08-26 16:12:07 +01:00
parent 4a1d48a7a9
commit e61c5f0945
2 changed files with 20 additions and 4 deletions
@@ -1,6 +1,6 @@
{
"db_name": "PostgreSQL",
"query": "\n SELECT\n NOW() AS \"started_at!\",\n NOW() + INTERVAL '2 minutes' AS \"execute_at!\"\n ",
"query": "\n SELECT\n NOW() AS \"started_at!\",\n CASE\n WHEN $1 THEN NOW()\n ELSE NOW() + INTERVAL '2 minutes'\n END AS \"execute_at!\"\n ",
"describe": {
"columns": [
{
@@ -15,12 +15,14 @@
}
],
"parameters": {
"Left": []
"Left": [
"Bool"
]
},
"nullable": [
null,
null
]
},
"hash": "b22226128dbe12c7c4144928409480eb891bd6b793bf3b21691746f8eb5de113"
"hash": "fcec6572c9543748dd515308fa4ad892348f29ab2ffe5ed4100a3aab8f22eb98"
}