feat(execution): add an execution kind

This allow to differentiate between normal executions and test executions
This commit is contained in:
Loïc Mathieu
2025-05-15 16:55:54 +02:00
parent c9a277d4d5
commit 30b39b2d30
24 changed files with 199 additions and 66 deletions

View File

@@ -0,0 +1,3 @@
alter table executions add "kind" VARCHAR(32) GENERATED ALWAYS AS (JQ_STRING("value", '.kind'));
alter table logs add "execution_kind" VARCHAR(32) GENERATED ALWAYS AS (JQ_STRING("value", '.executionKind'));
alter table metrics add "execution_kind" VARCHAR(32) GENERATED ALWAYS AS (JQ_STRING("value", '.executionKind'));