Skip to content

Commit 2c24deb

Browse files
authored
Fix tpch benchmark harness (#19033)
## Which issue does this PR close? <!-- We generally require a GitHub issue to be filed for all bug fixes and enhancements and this helps us generate change logs for our releases. You can link an issue to this PR using the GitHub syntax. For example `Closes #123` indicates that this PR will close issue #123. --> - Closes #19032 ## Rationale for this change See #19032 ## What changes are included in this PR? Fix binary ## Are these changes tested? I tested them manually ## Are there any user-facing changes? <!-- If there are user-facing changes then we may require documentation to be updated before approving the PR. --> <!-- If there are any breaking changes to public APIs, please add the `api change` label. -->
1 parent fa30489 commit 2c24deb

File tree

1 file changed

+2
-6
lines changed

1 file changed

+2
-6
lines changed

benchmarks/src/tpch/run.rs

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -93,12 +93,8 @@ pub struct RunOpt {
9393
prefer_hash_join: BoolDefaultTrue,
9494

9595
/// If true then Piecewise Merge Join can be used, if false then it will opt for Nested Loop Join
96-
/// True by default.
97-
#[structopt(
98-
short = "j",
99-
long = "enable_piecewise_merge_join",
100-
default_value = "false"
101-
)]
96+
/// False by default.
97+
#[structopt(long = "enable_piecewise_merge_join", default_value = "false")]
10298
enable_piecewise_merge_join: BoolDefaultTrue,
10399

104100
/// Mark the first column of each table as sorted in ascending order.

0 commit comments

Comments
 (0)