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
let mut table_data = vec![];
let mut degree_table_data = vec![];
#[for_await]
for x in table_iter {
table_data.push(x?);
}
#[for_await]
for x in degree_table_iter {
degree_table_data.push(x?);
}
Now we fetch ALL the data before start processing, instead of fetch-while-processing.
Part of #5977, can be fixed after the compiler bug is fixed.
The text was updated successfully, but these errors were encountered:
Now we fetch ALL the data before start processing, instead of fetch-while-processing.
Part of #5977, can be fixed after the compiler bug is fixed.
The text was updated successfully, but these errors were encountered: