We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a796bf4 commit 1a52a45Copy full SHA for 1a52a45
datafusion/core/tests/parquet/ordering.rs
@@ -198,7 +198,7 @@ async fn test_create_table_with_order_writes_sorting_columns() -> Result<()> {
198
// Find the parquet file that was written
199
let parquet_files: Vec<_> = std::fs::read_dir(&table_path)?
200
.filter_map(|e| e.ok())
201
- .filter(|e| e.path().extension().map_or(false, |ext| ext == "parquet"))
+ .filter(|e| e.path().extension().is_some_and(|ext| ext == "parquet"))
202
.collect();
203
204
assert!(
0 commit comments