Skip to content

Commit

Permalink
fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
andygrove committed Oct 4, 2019
1 parent 62372f6 commit 20cddef
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion rust/datafusion/src/execution/physical_plan/expressions.rs
Original file line number Diff line number Diff line change
Expand Up @@ -310,7 +310,7 @@ impl Accumulator for AvgAccumulator {
DataType::Float32 => avg_accumulate!(self, array, row_index, Float32Array),
DataType::Float64 => avg_accumulate!(self, array, row_index, Float64Array),
other => Err(ExecutionError::General(format!(
"SUM does not support {:?}",
"AVG does not support {:?}",
other
))),
}
Expand Down

0 comments on commit 20cddef

Please sign in to comment.