Skip to content
Open
Show file tree
Hide file tree
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 @@ -429,11 +429,7 @@ class VeloxOrcDataTypeValidationSuite extends VeloxWholeStageTransformerSuite {
" type2 where type1.struct.struct_1 = type2.struct.struct_1") { _ => }
}

// TODO: Re-enable once Velox implements HugeintValuesUsingHashTable::mergeWith.
// The hash join on decimal(38, 18) pushes a hugeint dynamic filter into the scan
// (velox#18159), and merging it with the existing IsNotNull filter throws
// "mergeWith() is not supported".
ignore("Decimal type") {
test("Decimal type") {
Comment thread
rui-mo marked this conversation as resolved.
// Validation: BatchScan Project Aggregate Expand Sort Limit
runQueryAndCompare(
"select int, decimal from type1 " +
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -430,11 +430,7 @@ class VeloxParquetDataTypeValidationSuite extends VeloxWholeStageTransformerSuit
" type2 where type1.struct.struct_1 = type2.struct.struct_1") { _ => }
}

// TODO: Re-enable once Velox implements HugeintValuesUsingHashTable::mergeWith.
// The hash join on decimal(38, 18) pushes a hugeint dynamic filter into the scan
// (velox#18159), and merging it with the existing IsNotNull filter throws
// "mergeWith() is not supported".
ignore("Decimal type") {
test("Decimal type") {
Comment thread
rui-mo marked this conversation as resolved.
// Validation: BatchScan Project Aggregate Expand Sort Limit
runQueryAndCompare(
"select int, decimal from type1 " +
Expand Down
Loading