Skip to content

Commit 4c7bf99

Browse files
committed
[Minor] Update Cargo.lock
1 parent 6042d6e commit 4c7bf99

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

  • datafusion/core/tests/execution

datafusion/core/tests/execution/coop.rs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -794,9 +794,9 @@ async fn stream_yields(
794794
let yielded = select! {
795795
result = join_handle => {
796796
match result {
797-
Ok(Pending) => Yielded::ReadyOrPending,
798-
Ok(Ready(Ok(_))) => Yielded::ReadyOrPending,
799-
Ok(Ready(Err(e))) => Yielded::Err(e),
797+
Ok(Poll::Pending) => Yielded::ReadyOrPending,
798+
Ok(Poll::Ready(Ok(_))) => Yielded::ReadyOrPending,
799+
Ok(Poll::Ready(Err(e))) => Yielded::Err(e),
800800
Err(_) => Yielded::Err(exec_datafusion_err!("join error")),
801801
}
802802
},

0 commit comments

Comments
 (0)