You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The queries like COUNT(columnA) should only count rows which have non-null values.
e.g.
A column int0 has 17 rows out of which 6 have nulls
in pinot COUNT(column) will return 17
but it should ideally return 11.