adarshsanjeev commented on code in PR #12998:
URL: https://github.com/apache/druid/pull/12998#discussion_r971875783


##########
extensions-core/multi-stage-query/src/test/java/org/apache/druid/msq/statistics/DelegateOrMinKeyCollectorTest.java:
##########
@@ -78,12 +85,13 @@ public void testAdd()
             QuantilesSketchKeyCollectorFactory.create(clusterBy)
         ).newKeyCollector();
 
-    collector.add(createKey(1L), 1);
+    RowKey key = createKey(1L);
+    collector.add(key, 1);
 
     Assert.assertTrue(collector.getDelegate().isPresent());

Review Comment:
   Ah, got it. I updated the test and moved it to QuantileSketchCollectorTest 
instead since that seemed more appropriate.



-- 
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]

Reply via email to