@@ -233,7 +233,7 @@ pub fn down_cast_any_ref(any: &dyn Any) -> &dyn Any {
233
233
/// # use arrow::datatypes::{DataType, Field, Schema};
234
234
/// # use datafusion_common::DFSchema;
235
235
/// # use datafusion_expr::{Expr, col, lit};
236
- /// # use datafusion_physical_expr_common::create_physical_expr;
236
+ /// # use datafusion_physical_expr_common::physical_expr:: create_physical_expr;
237
237
/// # use datafusion_expr::execution_props::ExecutionProps;
238
238
/// // For a logical expression `a = 1`, we can create a physical expression
239
239
/// let expr = col("a").eq(lit(1));
@@ -253,7 +253,7 @@ pub fn down_cast_any_ref(any: &dyn Any) -> &dyn Any {
253
253
/// # use arrow::datatypes::{DataType, Field, Schema};
254
254
/// # use datafusion_common::{assert_batches_eq, DFSchema};
255
255
/// # use datafusion_expr::{Expr, col, lit, ColumnarValue};
256
- /// # use datafusion_physical_expr_common::create_physical_expr;
256
+ /// # use datafusion_physical_expr_common::physical_expr:: create_physical_expr;
257
257
/// # use datafusion_expr::execution_props::ExecutionProps;
258
258
/// # let expr = col("a").eq(lit(1));
259
259
/// # let schema = Schema::new(vec![Field::new("a", DataType::Int32, true)]);
0 commit comments