Jackie-Jiang commented on code in PR #11307:
URL: https://github.com/apache/pinot/pull/11307#discussion_r1290566949
##########
pinot-broker/src/main/java/org/apache/pinot/broker/requesthandler/BaseBrokerRequestHandler.java:
##########
@@ -378,6 +385,7 @@ private BrokerResponseNative handleRequest(long requestId,
String query,
if (_enableDistinctCountBitmapOverride) {
handleDistinctCountBitmapOverride(serverPinotQuery);
}
+ handleDistinctMultiValuedOverride(serverPinotQuery,
getMultiValuedColumns(_tableCache, tableName));
Review Comment:
We can get schema first (move line 490 here) and pass schema into it if
available
```
Schema schema = _tableCache.getSchema(rawTableName);
if (schema != null) {
handleAggregationMVOverride(serverPinotQuery, schema);
}
```
--
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]