Skip to content

Commit cb3cec8

Browse files
committed
rm dbg
1 parent 7169067 commit cb3cec8

File tree

1 file changed

+4
-7
lines changed

1 file changed

+4
-7
lines changed

datafusion/sql/src/expr/mod.rs

Lines changed: 4 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -254,13 +254,10 @@ impl<'a, S: ContextProvider> SqlToRel<'a, S> {
254254
self.convert_data_type(&data_type)?,
255255
))),
256256

257-
SQLExpr::TypedString { data_type, value } => {
258-
dbg!("TypedString");
259-
Ok(Expr::Cast(Cast::new(
260-
Box::new(lit(value)),
261-
self.convert_data_type(&data_type)?,
262-
)))
263-
}
257+
SQLExpr::TypedString { data_type, value } => Ok(Expr::Cast(Cast::new(
258+
Box::new(lit(value)),
259+
self.convert_data_type(&data_type)?,
260+
))),
264261

265262
SQLExpr::IsNull(expr) => Ok(Expr::IsNull(Box::new(
266263
self.sql_expr_to_logical_expr(*expr, schema, planner_context)?,

0 commit comments

Comments
 (0)