Skip to content

Commit 1b8abcd

Browse files
committed
refactor: TableScan retrieves manifests concurrently and process their entries in parallel
1 parent dfb6356 commit 1b8abcd

File tree

4 files changed

+470
-300
lines changed

4 files changed

+470
-300
lines changed

crates/iceberg/src/error.rs

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -337,6 +337,12 @@ define_from_err!(
337337
"Failed to send a message to a channel"
338338
);
339339

340+
define_from_err!(
341+
tokio::task::JoinError,
342+
ErrorKind::Unexpected,
343+
"Failed to join a task"
344+
);
345+
340346
define_from_err!(std::io::Error, ErrorKind::Unexpected, "IO Operation failed");
341347

342348
/// Helper macro to check arguments.

0 commit comments

Comments
 (0)