Skip to content

Commit

Permalink
Upgrade Arrow2 dependency with casting update.
Browse files Browse the repository at this point in the history
  • Loading branch information
clarkzinzow committed May 14, 2023
1 parent 262b9cc commit 8e80005
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions src/array/pseudo_arrow/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -314,7 +314,7 @@ impl<T: Send + Sync + Clone + 'static> Array for PseudoArrowArray<T> {
.unwrap_or(0)
}

fn to_type(&self, _: DataType) -> Box<dyn Array> {
panic!("not implemented");
fn change_type(&mut self, _: arrow2::datatypes::DataType) {
unimplemented!("PseudoArray doesn't hold a data type and therefore does not support the change_type API.")
}
}

0 comments on commit 8e80005

Please sign in to comment.