You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
thread 'tests::simple_join' panicked at 'must be called from the context of a Tokio 0.2.x runtime configured with either basic_scheduler or threaded_scheduler'.
Note: migrated from original JIRA: https://issues.apache.org/jira/browse/ARROW-11578
thread 'tests::simple_join' panicked at 'must be called from the context of a Tokio 0.2.x runtime configured with either
basic_scheduler
orthreaded_scheduler
'.{code:Rust}
#[tokio::test]
async fn simple_join() -> Result<()> {
let schema1 = Arc::new(Schema::new(vec![
Field::new("a", DataType::Utf8, false),
Field::new("b", DataType::Int32, false),
]));
let schema2 = Arc::new(Schema::new(vec![
Field::new("c", DataType::Utf8, false),
Field::new("d", DataType::Int32, false),
]));
{code}
The text was updated successfully, but these errors were encountered: