* [highgo] Use notNULL for join filter.

This commit is contained in:
朱金勇
2025-11-13 10:16:30 +08:00
parent 35201cee33
commit ebc1926b27
3 changed files with 3 additions and 3 deletions
+1 -1
View File
@@ -3754,7 +3754,7 @@ class taskModel extends model
->leftJoin(TABLE_TASK)->alias('t3')->on("t2.AType='task' AND t2.AID=t3.id")
->where('t1.revision')->in($revisions)
->andWhere('t1.repo')->eq($repoID)
->andWhere('t3.id')->ne('')
->andWhere('t3.id')->notNULL()
->fetchGroup('revision', 'id');
}