Skip to content

Commit

Permalink
fix(fuzzer): Fix toSql methods for NestedLoopJoinNode in Reference Qu…
Browse files Browse the repository at this point in the history
…ery Runners (facebookincubator#11576)

Summary:

The select clause is completely missing in the produced query string.

Reviewed By: kagamiori

Differential Revision: D66132514
  • Loading branch information
Daniel Hunte authored and facebook-github-bot committed Dec 15, 2024
1 parent 9e301c1 commit 547d807
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
1 change: 1 addition & 0 deletions velox/exec/fuzzer/DuckQueryRunner.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -449,6 +449,7 @@ std::optional<std::string> DuckQueryRunner::toSql(
std::optional<std::string> DuckQueryRunner::toSql(
const std::shared_ptr<const core::NestedLoopJoinNode>& joinNode) {
std::stringstream sql;
sql << "SELECT " << folly::join(", ", joinNode->outputType()->names());

// Nested loop join without filter.
VELOX_CHECK(
Expand Down
1 change: 1 addition & 0 deletions velox/exec/fuzzer/PrestoQueryRunner.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -669,6 +669,7 @@ std::optional<std::string> PrestoQueryRunner::toSql(
std::optional<std::string> PrestoQueryRunner::toSql(
const std::shared_ptr<const core::NestedLoopJoinNode>& joinNode) {
std::stringstream sql;
sql << "SELECT " << folly::join(", ", joinNode->outputType()->names());

// Nested loop join without filter.
VELOX_CHECK(
Expand Down

0 comments on commit 547d807

Please sign in to comment.