jtuglu1 commented on PR #18813: URL: https://github.com/apache/druid/pull/18813#issuecomment-3628416415
@clintropolis do you know why many `VectorAggregator` implementations: - [NullableNumericVectorAggregator](https://github.com/apache/druid/blob/-/processing/src/main/java/org/apache/druid/query/aggregation/NullableNumericVectorAggregator.java#L116-L117) - [DoubleHllSketchBuildVectorProcessor](https://github.com/apache/druid/blob/master/extensions-core/datasketches/src/main/java/org/apache/druid/query/aggregation/datasketches/hll/vector/DoubleHllSketchBuildVectorProcessor.java#L62-L66) use the `rows` index to check whether the row being accessed is `null`, but [ApproximateHistogramVectorAggregator](https://github.com/apache/druid/blob/-/extensions-core/histogram/src/main/java/org/apache/druid/query/aggregation/histogram/ApproximateHistogramVectorAggregator.java#L75-L78) does not index into this null vector to fetch that information (and instead uses rows directly)?. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
