Skip to content

Commit

Permalink
change morsel.df to morsel.into_df
Browse files Browse the repository at this point in the history
  • Loading branch information
coastalwhite committed Oct 25, 2024
1 parent 33a7417 commit a574188
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion crates/polars-stream/src/nodes/io_sinks/ipc.rs
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ impl ComputeNode for IpcSinkNode {

join_handles.push(scope.spawn_task(TaskPriority::High, async move {
while let Ok(morsel) = receiver.recv().await {
self.writer.write_batch(morsel.df())?;
self.writer.write_batch(&morsel.into_df())?;
}

Ok(())
Expand Down

0 comments on commit a574188

Please sign in to comment.