We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3d1257e commit d4c1e14Copy full SHA for d4c1e14
datafusion/physical-plan/src/execution_plan.rs
@@ -261,7 +261,7 @@ pub trait ExecutionPlan: Debug + DisplayAs + Send + Sync {
261
/// Thus, [`spawn`] is disallowed, and instead use [`SpawnedTask`].
262
///
263
/// To enable timely cancellation, the [`Stream`] that is returned must not
264
- /// pin the CPU and must yield back to the tokio runtime regularly.
+ /// block the CPU and must yield back to the tokio runtime regularly.
265
/// [`ExecutionPlan`] implementations should follow [the guideline of not
266
/// spending a long time without reaching an `await`/yield point][async-guideline].
267
/// This can be achieved by manually returning [`Poll::Pending`] in regular
0 commit comments