Skip to content

Commit

Permalink
Fixed master. (#433)
Browse files Browse the repository at this point in the history
  • Loading branch information
jorgecarleitao authored May 27, 2021
1 parent 9e7bd2d commit 9c0ad7b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion datafusion/src/physical_plan/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -558,7 +558,7 @@ pub trait WindowAccumulator: Send + Sync + Debug {
.collect::<Option<Vec<ScalarValue>>>();

Ok(match result {
Some(arr) if num_rows == arr.len() => Some(ScalarValue::iter_to_array(&arr)?),
Some(arr) if num_rows == arr.len() => Some(ScalarValue::iter_to_array(arr)?),
None => None,
Some(arr) => {
return Err(DataFusionError::Internal(format!(
Expand Down

0 comments on commit 9c0ad7b

Please sign in to comment.