Skip to content

Commit e95b933

Browse files
committed
rename
Signed-off-by: jayzhan211 <jayzhan211@gmail.com>
1 parent 3b96ac5 commit e95b933

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

datafusion/core/src/physical_planner.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -276,7 +276,7 @@ fn create_physical_name(e: &Expr, is_first_expr: bool) -> Result<String> {
276276
.iter()
277277
.map(|e| create_physical_name(e, false))
278278
.collect::<Result<Vec<_>>>()?;
279-
Ok(format!("{}({})", fun.name(), names.join(",")))
279+
Ok(format!("{}({})", fun.name(), names.join(", ")))
280280
}
281281
AggregateFunctionDefinition::Name(_) => {
282282
internal_err!("Aggregate function `Expr` with name should be resolved.")

datafusion/expr/src/expr.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1853,7 +1853,7 @@ fn create_name(e: &Expr) -> Result<String> {
18531853
AggregateFunctionDefinition::UDF(..) => {
18541854
let names: Vec<String> =
18551855
args.iter().map(create_name).collect::<Result<_>>()?;
1856-
names.join(",")
1856+
names.join(", ")
18571857
}
18581858
};
18591859
let mut info = String::new();

0 commit comments

Comments
 (0)