「select c from Comment c where c.status = :status and (c.thread.unit = :unit or c.enquete.unit = :unit or c.file.unit = :unit) order by c.created desc」
から
「select c from Comment c left join c.thread t left join c.enquete e left join c.file f where c.status = :status and (t.unit = :unit or e.unit = :unit or f.unit = :unit) order by c.created desc」
に変えたらうまく行った。
https://tsugumon.net/bbs/comment?id=18127