Skip to content

Commit 1575a1f

Browse files
committed
style: reorder imports in mod.rs for better organization
1 parent c334f5d commit 1575a1f

File tree

1 file changed

+6
-4
lines changed
  • datafusion/core/src/dataframe

1 file changed

+6
-4
lines changed

datafusion/core/src/dataframe/mod.rs

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -53,11 +53,13 @@ use datafusion_common::{
5353
exec_err, not_impl_err, plan_err, Column, DFSchema, DataFusionError, ParamValues,
5454
ScalarValue, SchemaError, UnnestOptions,
5555
};
56-
use datafusion_expr::dml::InsertOp;
57-
use datafusion_expr::expr::{Alias, ScalarFunction};
58-
use datafusion_expr::{case, is_null, lit, SortExpr};
5956
use datafusion_expr::{
60-
utils::COUNT_STAR_EXPANSION, TableProviderFilterPushDown, UNNAMED_TABLE,
57+
case,
58+
dml::InsertOp,
59+
expr::{Alias, ScalarFunction},
60+
is_null, lit,
61+
utils::COUNT_STAR_EXPANSION,
62+
SortExpr, TableProviderFilterPushDown, UNNAMED_TABLE,
6163
};
6264
use datafusion_functions::core::coalesce;
6365
use datafusion_functions_aggregate::expr_fn::{

0 commit comments

Comments
 (0)