HoKim98 opened a new pull request, #8460: URL: https://github.com/apache/arrow-rs/pull/8460
# Which issue does this PR close? - Closes #7612. # Rationale for this change > Why are you proposing this change? If this is already explained clearly in the issue then this section is not needed. Explaining clearly why changes are proposed helps reviewers understand your changes and offer better suggestions for fixes. # What changes are included in this PR? - Replace all parquet's `futures::future::BoxFuture` into `BoxedFuture` for WASM targets, which is thread-local. - Replace all `FutureExt::boxed` calls into `Box::pin` to catch `Send` automatically # Are these changes tested? All build steps below are passed on my local machine: - `cargo build --package parquet --target wasm32-unknown-unknown -p parquet --features async` - `cargo build --package parquet --target wasm32-wasip1 -p parquet --features async` - `cargo build --package parquet --target wasm32-wasip2 -p parquet --features async` The tests are not passed because: - `wasm32-unknown-unknown`: `getrandom` is not supported - `wasm32-wasip1`, `wasm32-wasip2`: `tokio/fs` is not supported yet # Are there any user-facing changes? NONE -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
