second cast (#1721)

This commit is contained in:
Gabe Ruttner
2025-05-14 10:35:08 -07:00
committed by GitHub
parent 059293d541
commit d00112746f
2 changed files with 2 additions and 2 deletions

View File

@@ -1015,7 +1015,7 @@ SELECT
m.finished_at,
e.error_message,
o.output,
mrc.max_retry_count::int as retry_count
COALESCE(mrc.max_retry_count, 0)::int as retry_count
FROM runs r
LEFT JOIN metadata m ON r.run_id = m.run_id
LEFT JOIN error_message e ON r.run_id = e.run_id

View File

@@ -1186,7 +1186,7 @@ SELECT
m.finished_at,
e.error_message,
o.output,
mrc.max_retry_count::int as retry_count
COALESCE(mrc.max_retry_count, 0)::int as retry_count
FROM runs r
LEFT JOIN metadata m ON r.run_id = m.run_id
LEFT JOIN error_message e ON r.run_id = e.run_id