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 dc3593f commit 2882e4fCopy full SHA for 2882e4f
datafusion/core/src/datasource/view_test.rs
@@ -303,8 +303,8 @@ mod tests {
303
async fn filter_pushdown_view() -> Result<()> {
304
// Disable parquet pushdown_filters to ensure filters stay as FilterExec nodes
305
// rather than being pushed into the Parquet reader
306
- let config =
307
- SessionConfig::new().set_bool("datafusion.execution.parquet.pushdown_filters", false);
+ let config = SessionConfig::new()
+ .set_bool("datafusion.execution.parquet.pushdown_filters", false);
308
let ctx = SessionContext::new_with_config(config);
309
310
ctx.register_parquet(
0 commit comments