pub async fn min_max_from_parquet_metadata(
file_path: &str,
storage_options: Option<HashMap<String, String>>,
column_name: &str,
) -> Result<(u64, u64)>
Expand description
Extracts the minimum and maximum i64 values for the specified column_name
from a Parquet file’s metadata using object store with storage options.
§Errors
Returns an error if the file cannot be read, metadata parsing fails, or the column is missing or has no statistics.
§Panics
Panics if the Parquet metadata’s min/max unwrap operations fail unexpectedly.