feat: impl scanning data from storage engine for table (#47)

* feat: impl scanning data from storage for MitoTable

* adds test mod to setup table engine test

* fix: comment error

* fix: boyan -> dennis in todo comments

* fix: remove necessary send in BatchIteratorPtr
This commit is contained in:
dennis zhuang
2022-06-20 15:42:57 +08:00
committed by GitHub
parent 056185eb24
commit 4071b0cff2
10 changed files with 168 additions and 54 deletions

View File

@@ -19,7 +19,7 @@ use crate::value::Value;
use crate::vectors::{self, MutableVector, Validity, Vector, VectorRef};
/// Vector for primitive data types.
#[derive(Debug)]
#[derive(Debug, Clone)]
pub struct PrimitiveVector<T: Primitive> {
array: PrimitiveArray<T>,
}