We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6432a93 commit eff1b99Copy full SHA for eff1b99
src/ast/visitor.rs
@@ -547,7 +547,7 @@ where
547
///
548
/// visit_expressions_mut(&mut statements, |expr| {
549
/// if matches!(expr, Expr::Identifier(col_name) if col_name.value == "x") {
550
-/// let old_expr = std::mem::replace(expr, Expr::Value(Value::Null));
+/// let old_expr = std::mem::replace(expr, Expr::value(Value::Null));
551
/// *expr = Expr::Function(Function {
552
/// name: ObjectName::from(vec![Ident::new("f")]),
553
/// uses_odbc_syntax: false,
0 commit comments