saurabhd336 commented on PR #10382: URL: https://github.com/apache/pinot/pull/10382#issuecomment-1455891199
``` SET "enableInvertedIndexGroupBy"=false; select count(*), Origin from mytable group by Origin limit 1000 "numDocsScanned": 115545, "numEntriesScannedPostFilter": 115545, "totalDocs": 115545, ``` ``` SET "enableInvertedIndexGroupBy"=true; select count(*), Origin from mytable group by Origin limit 1000 "numDocsScanned": 3412, "numEntriesScannedPostFilter": 6824, "totalDocs": 115545, ``` -- 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]
