| 231 | |
| 232 | template <typename Type, typename VisitorArgType = typename Type::c_type> |
| 233 | void AddCountDistinctKernel(InputType type, ScalarAggregateFunction* func) { |
| 234 | AddAggKernel(KernelSignature::Make({type}, int64()), |
| 235 | CountDistinctInit<Type, VisitorArgType>, func); |
| 236 | } |
| 237 | |
| 238 | void AddCountDistinctKernels(ScalarAggregateFunction* func) { |
| 239 | // Boolean |
nothing calls this directly
no test coverage detected