Skip to content

Commit

Permalink
refactor: TableScan retrieves manifests concurrently and process thei…
Browse files Browse the repository at this point in the history
…r entries in parallel
  • Loading branch information
sdd committed Jul 18, 2024
1 parent dfb6356 commit 2801f0a
Show file tree
Hide file tree
Showing 4 changed files with 468 additions and 299 deletions.
6 changes: 6 additions & 0 deletions crates/iceberg/src/error.rs
Original file line number Diff line number Diff line change
Expand Up @@ -337,6 +337,12 @@ define_from_err!(
"Failed to send a message to a channel"
);

define_from_err!(
tokio::task::JoinError,
ErrorKind::Unexpected,
"Failed to join a task"
);

define_from_err!(std::io::Error, ErrorKind::Unexpected, "IO Operation failed");

/// Helper macro to check arguments.
Expand Down
Loading

0 comments on commit 2801f0a

Please sign in to comment.