Skip to content

Commit

Permalink
comments
Browse files Browse the repository at this point in the history
  • Loading branch information
comphead committed Apr 16, 2024
1 parent 4d671e2 commit a88b278
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions benchmarks/src/tpch/run.rs
Original file line number Diff line number Diff line change
Expand Up @@ -85,8 +85,9 @@ pub struct RunOpt {
#[structopt(short = "S", long = "disable-statistics")]
disable_statistics: bool,

/// Whether to disable collection of statistics (and cost based optimizations) or not.
#[structopt(short = "j", long = "hash-join", default_value = "true")]
/// If true then hash join used, if false then sort merge join
/// True by default.
#[structopt(short = "j", long = "prefer_hash_join", default_value = "true")]
prefer_hash_join: BoolDefaultTrue,
}

Expand Down

0 comments on commit a88b278

Please sign in to comment.