From bfa8b864671c9e36228649a15610ebad7ab5baa1 Mon Sep 17 00:00:00 2001 From: "joey.ljy" Date: Fri, 1 Dec 2023 22:04:54 +0800 Subject: [PATCH] disable skewness duckdb check --- velox/exec/tests/SparkAggregationFuzzerTest.cpp | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/velox/exec/tests/SparkAggregationFuzzerTest.cpp b/velox/exec/tests/SparkAggregationFuzzerTest.cpp index bde0eb7a02fb3..fbab876480ee0 100644 --- a/velox/exec/tests/SparkAggregationFuzzerTest.cpp +++ b/velox/exec/tests/SparkAggregationFuzzerTest.cpp @@ -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 = @@ -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;