Skip to content

Commit

Permalink
Fix Join Fuzzer Failure (facebookincubator#11240)
Browse files Browse the repository at this point in the history
Summary:
Add missing Dwrf Writer registration.

Pull Request resolved: facebookincubator#11240

Reviewed By: kagamiori

Differential Revision: D64259110

Pulled By: kgpai

fbshipit-source-id: 95d37c83b3bc655d18fd62e9438db1edc1cb4328
  • Loading branch information
majetideepak authored and facebook-github-bot committed Oct 11, 2024
1 parent 0e2e2b0 commit 4787538
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions velox/exec/fuzzer/JoinFuzzer.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@
#include "velox/connectors/hive/HiveConnectorSplit.h"
#include "velox/connectors/hive/PartitionIdGenerator.h"
#include "velox/dwio/dwrf/RegisterDwrfReader.h"
#include "velox/dwio/dwrf/RegisterDwrfWriter.h"
#include "velox/exec/OperatorUtils.h"
#include "velox/exec/fuzzer/FuzzerUtil.h"
#include "velox/exec/fuzzer/ReferenceQueryRunner.h"
Expand Down Expand Up @@ -350,6 +351,7 @@ JoinFuzzer::JoinFuzzer(
std::make_shared<config::ConfigBase>(std::move(hiveConfig)));
connector::registerConnector(hiveConnector);
dwrf::registerDwrfReaderFactory();
dwrf::registerDwrfWriterFactory();

seed(initialSeed);
}
Expand Down

0 comments on commit 4787538

Please sign in to comment.