Description
Count aggregation should return the number of non-null values for a given column.
count(literal) counts the items by replacing them with the given literal. However count(null) always returns zero since the values are replaced with null which count skips.
Description
Countaggregation should return the number of non-null values for a given column.count(literal) counts the items by replacing them with the given literal. However
count(null)always returns zero since the values are replaced withnullwhich count skips.