Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -242,7 +242,7 @@ void testLogTableRecordBatchFilterPushdown() {
// Verify the predicate evaluates correctly against statistics.
// Schema: id(INT), name(STRING), value(BIGINT), region(STRING)
// Filter: region = 'HangZhou' AND value > 1000
Long[] noNulls = new Long[] {0L, 0L, 0L, 0L};
int[] noNulls = new int[] {0, 0, 0, 0};

// Batch with value range [2000, 5000] and region ['HangZhou', 'HangZhou']
// → should match
Expand Down Expand Up @@ -312,7 +312,7 @@ void testLogTableRangeFilterPushdown() {
// Verify the predicate actually evaluates correctly against statistics.
// Schema: id(INT), name(STRING), value(BIGINT), region(STRING)
// Filter: id > 3 AND id < 10
Long[] noNulls = new Long[] {0L, 0L, 0L, 0L};
int[] noNulls = new int[] {0, 0, 0, 0};

// Batch with id range [5, 8] → should match (5 > 3 is possible, 8 < 10 is possible)
assertThat(
Expand Down