This is an automated email from the ASF dual-hosted git repository.
jackie pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/pinot.git
The following commit(s) were added to refs/heads/master by this push:
new 809426f2944 [Flaky-test] Make simple aggregate query cheaper for
accountant test (#17478)
809426f2944 is described below
commit 809426f294440edd76fee07886ebae351c3901b6
Author: Xiaotian (Jackie) Jiang <[email protected]>
AuthorDate: Fri Jan 9 14:02:17 2026 -0800
[Flaky-test] Make simple aggregate query cheaper for accountant test
(#17478)
---
.../apache/pinot/integration/tests/BaseQueryKillingIntegrationTest.java | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git
a/pinot-integration-tests/src/test/java/org/apache/pinot/integration/tests/BaseQueryKillingIntegrationTest.java
b/pinot-integration-tests/src/test/java/org/apache/pinot/integration/tests/BaseQueryKillingIntegrationTest.java
index 871d909f82c..e6045ad1adb 100644
---
a/pinot-integration-tests/src/test/java/org/apache/pinot/integration/tests/BaseQueryKillingIntegrationTest.java
+++
b/pinot-integration-tests/src/test/java/org/apache/pinot/integration/tests/BaseQueryKillingIntegrationTest.java
@@ -77,7 +77,7 @@ public abstract class BaseQueryKillingIntegrationTest extends
BaseClusterIntegra
"SET sortAggregateSingleThreadedNumSegmentsThreshold=10000; SET
sortAggregateLimitThreshold=3000001; "
+ "SELECT DISTINCT_COUNT_HLL(intDimSV1, 14), stringDimSV2 FROM
mytable GROUP BY 2 ORDER BY 2 LIMIT 3000000";
- protected static final String AGGREGATE_QUERY = "SELECT
DISTINCT_COUNT_HLL(intDimSV1, 14) FROM mytable";
+ protected static final String AGGREGATE_QUERY = "SELECT MIN(intDimSV1) FROM
mytable";
protected static final String SELECT_STAR_QUERY = "SELECT * FROM mytable
LIMIT 5";
@BeforeClass
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]