Skip to content
This repository has been archived by the owner on Feb 18, 2024. It is now read-only.

Commit

Permalink
Bumped and updated
Browse files Browse the repository at this point in the history
  • Loading branch information
jorgecarleitao committed Jul 30, 2022
1 parent 19ddc0b commit 86b1c91
Show file tree
Hide file tree
Showing 5 changed files with 183 additions and 233 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ crc = { version = "2", optional = true }
async-stream = { version = "0.3.2", optional = true }

# ORC support
orc-format = { git = "https://github.com/DataEngineeringLabs/orc-format.git", optional = true }
orc-format = { git = "https://github.com/DataEngineeringLabs/orc-format.git", branch = "iters", optional = true }

# Arrow integration tests support
serde = { version = "^1.0", features = ["rc"], optional = true }
Expand Down
4 changes: 2 additions & 2 deletions src/io/orc/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ pub use orc_format as format;

use crate::error::Error;

impl From<format::Error> for Error {
fn from(error: format::Error) -> Self {
impl From<format::error::Error> for Error {
fn from(error: format::error::Error) -> Self {
Error::ExternalFormat(format!("{:?}", error))
}
}
Loading

0 comments on commit 86b1c91

Please sign in to comment.