Skip to content

Commit

Permalink
Remove JsonEqual (#2317)
Browse files Browse the repository at this point in the history
* Remove JsonEqual

* Fix clippy

* Fix test

* Parse schema metadata from JSON
  • Loading branch information
viirya authored Aug 5, 2022
1 parent 5166a08 commit 2683b06
Show file tree
Hide file tree
Showing 10 changed files with 815 additions and 2,437 deletions.
3 changes: 1 addition & 2 deletions arrow/src/array/array.rs
Original file line number Diff line number Diff line change
Expand Up @@ -21,12 +21,11 @@ use std::fmt;
use std::sync::Arc;

use super::*;
use crate::array::equal_json::JsonEqual;
use crate::buffer::{Buffer, MutableBuffer};

/// Trait for dealing with different types of array at runtime when the type of the
/// array is not known in advance.
pub trait Array: fmt::Debug + Send + Sync + JsonEqual {
pub trait Array: fmt::Debug + Send + Sync {
/// Returns the array as [`Any`](std::any::Any) so that it can be
/// downcasted to a specific implementation.
///
Expand Down
Loading

0 comments on commit 2683b06

Please sign in to comment.