Skip to content

Commit

Permalink
Disable approx_distinct result verifier in window fuzzer test
Browse files Browse the repository at this point in the history
Summary: The approx_distinct result verifier for window fuzzer is giving false positive signals. It need to be fixed as described in #9347. Disable this result verifier until it is fixed.

Differential Revision: D55879765
  • Loading branch information
kagamiori authored and facebook-github-bot committed Apr 8, 2024
1 parent e29cde7 commit 4401715
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion velox/functions/prestosql/fuzzer/WindowFuzzerTest.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,8 @@ int main(int argc, char** argv) {
std::shared_ptr<facebook::velox::exec::test::ResultVerifier>>
customVerificationFunctions = {
// Approx functions.
{"approx_distinct", std::make_shared<ApproxDistinctResultVerifier>()},
// https://github.com/facebookincubator/velox/issues/9347
{"approx_distinct", nullptr},
{"approx_set", nullptr},
{"approx_percentile", nullptr},
{"approx_most_frequent", nullptr},
Expand Down

0 comments on commit 4401715

Please sign in to comment.