summary refs log tree commit diff
path: root/changelog.d/11570.misc (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Remove redundant `COALESCE()`s around `COUNT()`s in database queries (#11570)Sean Quah2021-12-141-0/+1
`COUNT()` never returns `NULL`. A `COUNT(*)` over 0 rows is 0 and a `COUNT(NULL)` is also 0.