Skip to content

Commit 7325b83

Browse files
authored
MINOR: the .tbl files don't have headers. after conversion to parquet, it was missing a row. (#3620)
1 parent ced3b27 commit 7325b83

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

benchmarks/src/bin/tpch.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -327,6 +327,7 @@ async fn convert_tbl(opt: ConvertOpt) -> Result<()> {
327327
let input_path = format!("{}/{}.tbl", opt.input_path.to_str().unwrap(), table);
328328
let options = CsvReadOptions::new()
329329
.schema(&schema)
330+
.has_header(false)
330331
.delimiter(b'|')
331332
.file_extension(".tbl");
332333

0 commit comments

Comments
 (0)