You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
apply-overrides' availability cleanup matched rows with a row-value IN on
(model, isl, osl, ...), which never matches agentic rows (isl/osl NULL), so a
purge left the agentic availability row behind (found purging run 29089300938).
Rewrite the match and the orphan NOT EXISTS with IS NOT DISTINCT FROM on
isl/osl. No change for fixed-seq rows (non-null isl/osl behave as before).
中文:apply-overrides 的 availability 清理用行值 IN 匹配 (model, isl, osl, ...),
对 agentic 行(isl/osl 为 NULL)永不匹配,导致清理后残留 agentic availability 行
(在清理 run 29089300938 时发现)。改用 IS NOT DISTINCT FROM 做 NULL 安全匹配;
定长序列(isl/osl 非空)行为不变。
0 commit comments