Skip to content

Commit d1b4130

Browse files
committed
finish changes
1 parent c1b6bf2 commit d1b4130

File tree

18 files changed

+425
-1108
lines changed

18 files changed

+425
-1108
lines changed

arrow-array/src/array/mod.rs

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -78,9 +78,6 @@ pub use list_view_array::*;
7878

7979
use crate::iterator::ArrayIter;
8080

81-
mod variant_array;
82-
pub use variant_array::*;
83-
8481
/// An array in the [arrow columnar format](https://arrow.apache.org/docs/format/Columnar.html)
8582
pub trait Array: std::fmt::Debug + Send + Sync {
8683
/// Returns the array as [`Any`] so that it can be
@@ -1274,4 +1271,4 @@ mod tests {
12741271
let expected: Int32Array = vec![1, 2, 3].into_iter().map(Some).collect();
12751272
assert_eq!(array, expected);
12761273
}
1277-
}
1274+
}

0 commit comments

Comments
 (0)