-
Notifications
You must be signed in to change notification settings - Fork 137
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
dataprep: Bump to latest syntax: about() -> help()
- Loading branch information
Showing
1 changed file
with
8 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -15,50 +15,50 @@ fn main() -> Result<(), Box<dyn std::error::Error>> { | |
.author("Andre Kohn. <[email protected]>") | ||
.subcommand( | ||
App::new("uni") | ||
.about("Generates parquet files for the university schema") | ||
.help("Generates parquet files for the university schema") | ||
.arg( | ||
Arg::new("out") | ||
.short('o') | ||
.takes_value(true) | ||
.required(true) | ||
.about("Directory where the parquet files are written"), | ||
.help("Directory where the parquet files are written"), | ||
), | ||
) | ||
.subcommand( | ||
App::new("merge-benchmarks") | ||
.about("Merges benchmark reports") | ||
.help("Merges benchmark reports") | ||
.arg( | ||
Arg::new("reports") | ||
.short('r') | ||
.long("reports") | ||
.takes_value(true) | ||
.required(true) | ||
.about("Report directory"), | ||
.help("Report directory"), | ||
), | ||
) | ||
.subcommand( | ||
App::new("tpch") | ||
.about("Generates arrow & parquet files from the TPCH TBL files") | ||
.help("Generates arrow & parquet files from the TPCH TBL files") | ||
.arg( | ||
Arg::new("in") | ||
.long("in") | ||
.takes_value(true) | ||
.required(true) | ||
.about("Directory with generated tbl files"), | ||
.help("Directory with generated tbl files"), | ||
) | ||
.arg( | ||
Arg::new("out-arrow") | ||
.long("out-arrow") | ||
.takes_value(true) | ||
.required(true) | ||
.about("Directory where the arrow files are written"), | ||
.help("Directory where the arrow files are written"), | ||
) | ||
.arg( | ||
Arg::new("out-parquet") | ||
.long("out-parquet") | ||
.takes_value(true) | ||
.required(true) | ||
.about("Directory where the parquet files are written"), | ||
.help("Directory where the parquet files are written"), | ||
), | ||
) | ||
.get_matches(); | ||
|