Skip to content

Commit 7720416

Browse files
committed
add: log schema inference process in ParquetFormat
1 parent 6c841c7 commit 7720416

File tree

1 file changed

+1
-0
lines changed
  • datafusion/core/src/datasource/file_format

1 file changed

+1
-0
lines changed

datafusion/core/src/datasource/file_format/parquet.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -335,6 +335,7 @@ impl FileFormat for ParquetFormat {
335335
store: &Arc<dyn ObjectStore>,
336336
objects: &[ObjectMeta],
337337
) -> Result<SchemaRef> {
338+
println!("==> parquet.rs: infer_schema");
338339
let mut schemas: Vec<_> = futures::stream::iter(objects)
339340
.map(|object| {
340341
fetch_schema_with_location(

0 commit comments

Comments
 (0)