Skip to content

Commit

Permalink
fix explode
Browse files Browse the repository at this point in the history
  • Loading branch information
Colin Ho authored and Colin Ho committed Oct 23, 2024
1 parent 994bb71 commit 7aa7b61
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/daft-local-execution/src/intermediate_ops/explode.rs
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ impl IntermediateOperator for ExplodeOperator {
&self,
_idx: usize,
input: &PipelineResultType,
_state: Option<&mut Box<dyn IntermediateOperatorState>>,
_state: &IntermediateOperatorState,
) -> DaftResult<IntermediateOperatorResult> {
let out = input.as_data().explode(&self.to_explode)?;
Ok(IntermediateOperatorResult::NeedMoreInput(Some(Arc::new(
Expand Down

0 comments on commit 7aa7b61

Please sign in to comment.