siddharthteotia 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_r370778532
 
 

 ##########
 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:
   This had to be fixed since DaysSinceEpoch is a sorted column and will be 
using sorted inverted index operator and doc id set. So the number of entries 
scanned in filter will be 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]

Reply via email to