Skip to content

Commit 2b51166

Browse files
authored
fix: lint issue in latest toolchain (#261)
1 parent d8f3a42 commit 2b51166

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

datafusion-pg-catalog/src/sql/rules.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -591,10 +591,10 @@ impl VisitorMut for FixArrayLiteralVisitor {
591591
}
592592
})
593593
.collect();
594-
*expr = Box::new(Expr::Array(Array {
594+
**expr = Expr::Array(Array {
595595
elem: elems,
596596
named: true,
597-
}));
597+
});
598598
}
599599
}
600600
}

0 commit comments

Comments
 (0)