Jackie-Jiang commented on a change in pull request #5013: For RANGE predicate
queries touching offline segments, use sorted inverted index if the column is
sorted
URL: https://github.com/apache/incubator-pinot/pull/5013#discussion_r370800604
##########
File path:
pinot-integration-tests/src/test/java/org/apache/pinot/integration/tests/MetadataAndDictionaryAggregationPlanClusterIntegrationTest.java
##########
@@ -418,7 +418,6 @@ public void testDictionaryBasedQueries()
pqlQuery = "SELECT MAX(ArrTime) FROM " + DEFAULT_TABLE_NAME + " where
DaysSinceEpoch > 16100";
response = postQuery(pqlQuery);
assertTrue(response.get("numEntriesScannedPostFilter").asLong() > 0);
- assertTrue(response.get("numEntriesScannedInFilter").asLong() > 0);
Review comment:
Can you change it to
`assertEquals(response.get("numEntriesScannedInFilter").asLong(), 0)`?
----------------------------------------------------------------
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.
For queries about this service, please contact Infrastructure at:
[email protected]
With regards,
Apache Git Services
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]