Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Make DecimalArray as PrimitiveArray #2857

Merged
merged 6 commits into from Oct 13, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
997 changes: 0 additions & 997 deletions arrow-array/src/array/decimal_array.rs

This file was deleted.

9 changes: 0 additions & 9 deletions arrow-array/src/array/mod.rs
Expand Up @@ -31,9 +31,6 @@ pub use binary_array::*;
mod boolean_array;
pub use boolean_array::*;

mod decimal_array;
pub use decimal_array::*;

mod dictionary_array;
pub use dictionary_array::*;

Expand Down Expand Up @@ -449,12 +446,6 @@ impl PartialEq for FixedSizeBinaryArray {
}
}

impl PartialEq for Decimal128Array {
fn eq(&self, other: &Self) -> bool {
self.data().eq(other.data())
}
}

impl<OffsetSize: OffsetSizeTrait> PartialEq for GenericListArray<OffsetSize> {
fn eq(&self, other: &Self) -> bool {
self.data().eq(other.data())
Expand Down