Skip to content

Commit

Permalink
chore: rebase main
Browse files Browse the repository at this point in the history
  • Loading branch information
v0y4g3r committed Jun 24, 2024
1 parent b9a2a0d commit 4801220
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion src/mito2/src/memtable/bulk.rs
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ use crate::error::Result;
use crate::memtable::bulk::part::BulkPart;
use crate::memtable::key_values::KeyValue;
use crate::memtable::{
BoxedBatchIterator, KeyValues, Memtable, MemtableId, MemtableRef, MemtableStats,
BoxedBatchIterator, KeyValues, Memtable, MemtableId, MemtableRange, MemtableRef, MemtableStats,
};

#[allow(unused)]
Expand Down Expand Up @@ -63,6 +63,14 @@ impl Memtable for BulkMemtable {
todo!()
}

fn ranges(
&self,
_projection: Option<&[ColumnId]>,
_predicate: Option<Predicate>,
) -> Vec<MemtableRange> {
todo!()
}

fn is_empty(&self) -> bool {
self.parts.read().unwrap().is_empty()
}
Expand Down

0 comments on commit 4801220

Please sign in to comment.