Skip to content

Commit d764c4a

Browse files
authored
minor: Fix build on main (#13159)
1 parent b30d12a commit d764c4a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

datafusion/sql/src/unparser/expr.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1343,7 +1343,7 @@ impl Unparser<'_> {
13431343
let args = self.function_args_to_sql(std::slice::from_ref(&unnest.expr))?;
13441344

13451345
Ok(ast::Expr::Function(Function {
1346-
name: ast::ObjectName(vec![Ident {
1346+
name: ObjectName(vec![Ident {
13471347
value: "UNNEST".to_string(),
13481348
quote_style: None,
13491349
}]),

0 commit comments

Comments
 (0)