Skip to content

Commit d9c7af3

Browse files
kevinjqliuCopilot
andcommitted
unnecessary changes
Co-authored-by: Copilot <copilot@github.com>
1 parent 87e228d commit d9c7af3

1 file changed

Lines changed: 5 additions & 1 deletion

File tree

tpchgen-cli/bin/main.rs

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,10 @@ Examples
3838
3939
tpchgen-cli -s 1 --output-dir=/tmp/tpch
4040
41+
# Generate all tables in CSV format:
42+
43+
tpchgen-cli csv -s 1 --output-dir=/tmp/tpch
44+
4145
# Generate all tables in CSV format with tab delimiter:
4246
4347
tpchgen-cli csv -s 1 --delimiter='\t' --output-dir=/tmp/tpch
@@ -150,7 +154,7 @@ struct CsvArgs {
150154
///
151155
/// Specifies the delimiter character to use when generating CSV files.
152156
///
153-
/// Supports escape sequences: \t (tab), \n (newline), \r (carriage return), \\\ (backslash)
157+
/// Supports escape sequences: \t (tab), \n (newline), \r (carriage return), \\ (backslash)
154158
/// Common delimiters: ',' (comma), '|' (pipe), '\t' (tab), ';' (semicolon)
155159
#[arg(long, default_value = ",", value_parser = parse_delimiter)]
156160
delimiter: char,

0 commit comments

Comments
 (0)