Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Remove redundant `COALESCE()`s around `COUNT()`s in database queries (#11570) | Sean Quah | 2021-12-14 | 1 | -0/+1 |
`COUNT()` never returns `NULL`. A `COUNT(*)` over 0 rows is 0 and a `COUNT(NULL)` is also 0. |