Skip to content
Closed
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
fix: Cargo fmt
  • Loading branch information
logan-keede committed Feb 5, 2025
commit a1d26cabd327e7d265a522398cf32babfa884725
4 changes: 2 additions & 2 deletions datafusion/catalog-listing/src/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -18,10 +18,10 @@
//! A table that uses the `ObjectStore` listing capability
//! to get the list of files to process.

pub mod helpers;
pub mod url;
pub mod file_scan_config;
pub mod helpers;
mod minmax_statistics;
pub mod url;

use chrono::TimeZone;
use datafusion_common::Result;
Expand Down
8 changes: 4 additions & 4 deletions datafusion/core/src/datasource/physical_plan/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -289,17 +289,17 @@ mod tests {
use super::*;
use crate::physical_plan::{DefaultDisplay, VerboseDisplay};

use crate::datasource::physical_plan::FileGroupDisplay;
use crate::datasource::schema_adapter::{
DefaultSchemaAdapterFactory, SchemaAdapterFactory,
};
use arrow_array::cast::AsArray;
use arrow_array::types::{Float32Type, Float64Type, UInt32Type};
use arrow_array::{
BinaryArray, BooleanArray, Float32Array, Int32Array, Int64Array, RecordBatch,
StringArray, UInt64Array,
};
use arrow_schema::{Field, Schema};
use crate::datasource::physical_plan::FileGroupDisplay;
use crate::datasource::schema_adapter::{
DefaultSchemaAdapterFactory, SchemaAdapterFactory,
};
use chrono::Utc;

#[test]
Expand Down
Loading