| 886 | using CountPair = std::pair<int64_t, int64_t>; |
| 887 | |
| 888 | static CountPair NaiveCount(const Array& array) { |
| 889 | CountPair count; |
| 890 | |
| 891 | count.first = array.length() - array.null_count(); |
| 892 | count.second = array.null_count(); |
| 893 | |
| 894 | return count; |
| 895 | } |
| 896 | |
| 897 | void ValidateCount(const Array& input, CountPair expected) { |
| 898 | CountOptions non_null; |
no test coverage detected