Closed mbasmanova closed 1 year ago
I am looking at this
start with : buck run //velox/expression/tests:velox_expression_fuzzer_test -- --velox_fuzzer_enable_complex_types keep adding functions to blacklist until repro happen
to repor : run buck run //velox/expression/tests:velox_expression_fuzzer_test -- --velox_fuzzer_enable_complex_types --seed=434987544
after updating skip list to include:
// be fixed before we can enable.
std::unordered_set<std::string> skipFunctions = {
// Fuzzer and the underlying engine are confused about cardinality(HLL)
// (since HLL is a user defined type), and end up trying to use
// cardinality passing a VARBINARY (since HLL's implementation uses an
// alias to VARBINARY).
"cardinality",
"neq",
"in",
"array_sort",
"array_intersect",
"map_concat_empty_nulls",
"width_bucket"};
fix diff is up
CC: @pedroerp