Create a try cast expression
(expr: Expr, data_type: DataType)
| 333 | |
| 334 | /// Create a try cast expression |
| 335 | pub fn try_cast(expr: Expr, data_type: DataType) -> Expr { |
| 336 | Expr::TryCast(TryCast::new(Box::new(expr), data_type)) |
| 337 | } |
| 338 | |
| 339 | /// Create is null expression |
| 340 | pub fn is_null(expr: Expr) -> Expr { |
searching dependent graphs…