Skip to content

Commit

Permalink
disable skewness duckdb check
Browse files Browse the repository at this point in the history
  • Loading branch information
liujiayi771 committed Dec 1, 2023
1 parent 002dece commit bfa8b86
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions velox/exec/tests/SparkAggregationFuzzerTest.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -66,11 +66,7 @@ int main(int argc, char** argv) {
{"first", nullptr},
{"first_ignore_null", nullptr},
{"max_by", nullptr},
{"min_by", nullptr},
// The skewness functions of Velox and DuckDB use different
// algorithms.
// https://github.com/facebookincubator/velox/issues/4845
{"skewness", nullptr}};
{"min_by", nullptr}};

size_t initialSeed = FLAGS_seed == 0 ? std::time(nullptr) : FLAGS_seed;
auto duckQueryRunner =
Expand All @@ -79,6 +75,10 @@ int main(int argc, char** argv) {
// https://github.com/facebookincubator/velox/issues/7677
"max_by",
"min_by",
// The skewness functions of Velox and DuckDB use different
// algorithms.
// https://github.com/facebookincubator/velox/issues/4845
"skewness",
});

using Runner = facebook::velox::exec::test::AggregationFuzzerRunner;
Expand Down

0 comments on commit bfa8b86

Please sign in to comment.