diff --git a/datafusion/input/location.py b/datafusion/input/location.py index 121407581..efbc82f23 100644 --- a/datafusion/input/location.py +++ b/datafusion/input/location.py @@ -50,7 +50,6 @@ def build_table( num_rows = metadata.num_rows # Iterate through the schema and build the SqlTable - print(f"Metadata Schema: {metadata.schema}") for col in metadata.schema: columns.append( ( diff --git a/src/common/data_type.rs b/src/common/data_type.rs index fe5f6f060..199fb616e 100644 --- a/src/common/data_type.rs +++ b/src/common/data_type.rs @@ -321,7 +321,7 @@ impl DataTypeMap { "int32" => Ok(DataType::Int32), "int64" => Ok(DataType::Int64), "int96" => { - // Int96 is an old datatype that is now deprecated. We convert to nanosecond timestamp + // Int96 is an old parquet datatype that is now deprecated. We convert to nanosecond timestamp Ok(DataType::Timestamp(TimeUnit::Nanosecond, None)) } "float" => Ok(DataType::Float32),