Skip to content

Commit

Permalink
remove println from tests
Browse files Browse the repository at this point in the history
  • Loading branch information
andygrove committed Mar 14, 2019
1 parent 9d3047a commit 2aeea24
Showing 1 changed file with 0 additions and 4 deletions.
4 changes: 0 additions & 4 deletions rust/datafusion/src/datasource/parquet.rs
Original file line number Diff line number Diff line change
Expand Up @@ -561,10 +561,6 @@ mod tests {
let testdata = env::var("PARQUET_TEST_DATA").unwrap();
let filename = format!("{}/{}", testdata, name);
let table = ParquetTable::try_new(&filename).unwrap();
println!("Loading file {} with schema:", name);
for field in table.schema().fields() {
println!("\t{:?}", field);
}
Box::new(table)
}
}

0 comments on commit 2aeea24

Please sign in to comment.