Skip to content

Commit 5a6dacf

Browse files
committed
fix doc
Signed-off-by: jayzhan211 <[email protected]>
1 parent c5dc3e2 commit 5a6dacf

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

datafusion/physical-expr-common/src/physical_expr.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -233,7 +233,7 @@ pub fn down_cast_any_ref(any: &dyn Any) -> &dyn Any {
233233
/// # use arrow::datatypes::{DataType, Field, Schema};
234234
/// # use datafusion_common::DFSchema;
235235
/// # 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;
237237
/// # use datafusion_expr::execution_props::ExecutionProps;
238238
/// // For a logical expression `a = 1`, we can create a physical expression
239239
/// let expr = col("a").eq(lit(1));
@@ -253,7 +253,7 @@ pub fn down_cast_any_ref(any: &dyn Any) -> &dyn Any {
253253
/// # use arrow::datatypes::{DataType, Field, Schema};
254254
/// # use datafusion_common::{assert_batches_eq, DFSchema};
255255
/// # 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;
257257
/// # use datafusion_expr::execution_props::ExecutionProps;
258258
/// # let expr = col("a").eq(lit(1));
259259
/// # let schema = Schema::new(vec![Field::new("a", DataType::Int32, true)]);

0 commit comments

Comments
 (0)