navina commented on issue #8819: URL: https://github.com/apache/pinot/issues/8819#issuecomment-1218392411
This issue can be reproduced by adding the following test query in `BaseClusterIntegrationTestSet#testReload` : `SELECT SUMMV(NewIntMVDimension) FROM " + rawTableName` The problem wasn't caught in the existing integration tests because the simple `select *` type of queries is by default limited to 10 records. If we increase limit in the query, it is very expensive and likely to run out of heap space. So, using an aggregated function on a column ensures that the query fetches from the consuming segment as well. The test has been updated in the PR #9205 -- 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: commits-unsubscr...@pinot.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org --------------------------------------------------------------------- To unsubscribe, e-mail: commits-unsubscr...@pinot.apache.org For additional commands, e-mail: commits-h...@pinot.apache.org