Skip to content

Commit

Permalink
Fix test.
Browse files Browse the repository at this point in the history
  • Loading branch information
gianm committed Oct 8, 2024
1 parent 43942e9 commit 694b089
Showing 1 changed file with 7 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -7469,7 +7469,13 @@ public void testNullArray()
newScanQueryBuilder()
.dataSource(CalciteTests.ARRAYS_DATASOURCE)
.intervals(querySegmentSpec(Filtration.eternity()))
.virtualColumns(expressionVirtualColumn("v0", "(\"arrayLongNulls\" == array(null,null))", ColumnType.LONG))
.virtualColumns(
expressionVirtualColumn(
"v0",
"(\"arrayLongNulls\" == CAST(array(null,null), 'ARRAY<LONG>'))",
ColumnType.LONG
)
)
.columns("v0")
.resultFormat(ScanQuery.ResultFormat.RESULT_FORMAT_COMPACTED_LIST)
.limit(1)
Expand Down

0 comments on commit 694b089

Please sign in to comment.