From 205ec3bdd4ad2b7fdb982e40f97ec46386a432c3 Mon Sep 17 00:00:00 2001 From: Matt Aitken Date: Sat, 20 Dec 2025 17:04:08 +0000 Subject: [PATCH] Better column descriptions --- apps/webapp/app/v3/querySchemas.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/apps/webapp/app/v3/querySchemas.ts b/apps/webapp/app/v3/querySchemas.ts index 9bdb9b698..c1ef99ae0 100644 --- a/apps/webapp/app/v3/querySchemas.ts +++ b/apps/webapp/app/v3/querySchemas.ts @@ -290,7 +290,8 @@ export const runsSchema: TableSchema = { execution_duration: { name: "execution_duration", ...column("Nullable(Int64)", { - description: "Computed execution time in milliseconds (virtual column)", + description: + "The time between the run starting and completing. This includes any time spent waiting (it is not compute time, use `usage_duration` for that).", customRenderType: "duration", example: "4000", }),