Skip to content

Commit 18384b2

Browse files
committed
assume nopushdown aggregate behavior for case ITs
Signed-off-by: Simeon Widdis <sawiddis@amazon.com>
1 parent bf7f0b7 commit 18384b2

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

integ-test/src/test/java/org/opensearch/sql/calcite/remote/CalcitePPLCaseFunctionIT.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -315,7 +315,7 @@ public void testCaseCanBePushedDownAsRangeQuery() throws IOException {
315315
TEST_INDEX_BANK));
316316
verifySchema(actual4, schema("avg(balance)", "double"), schema("age_range", "string"));
317317
// There's such a discrepancy because null cannot be the key for a range query
318-
if (isPushdownDisabled()) {
318+
if (isPushdownDisabled() || isAnalyticsParquetIndicesEnabled()) {
319319
verifyDataRows(
320320
actual4,
321321
rows(32838.0, "u30"),
@@ -470,7 +470,7 @@ public void testCaseAggWithNullValues() throws IOException {
470470
TEST_INDEX_STATE_COUNTRY_WITH_NULL));
471471
verifySchema(actual, schema("avg(age)", "double"), schema("age_category", "string"));
472472
// There is such discrepancy because range aggregations will ignore null values
473-
if (isPushdownDisabled()) {
473+
if (isPushdownDisabled() || isAnalyticsParquetIndicesEnabled()) {
474474
verifyDataRows(
475475
actual,
476476
rows(10, "teenager"),

0 commit comments

Comments
 (0)