Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
tanruixiang committed Jul 4, 2023
1 parent 41b3970 commit 8f705c8
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 2 additions & 0 deletions analytic_engine/src/sst/parquet/writer.rs
Original file line number Diff line number Diff line change
Expand Up @@ -358,6 +358,8 @@ mod tests {
table_options::{self, StorageFormatHint},
};

// TODO(xikai): add test for reverse reader

#[test]
fn test_parquet_build_and_read() {
init_log_for_test();
Expand Down
4 changes: 2 additions & 2 deletions table_engine/src/memory.rs
Original file line number Diff line number Diff line change
Expand Up @@ -244,8 +244,8 @@ fn build_column_block<'a, I: Iterator<Item = &'a Datum>>(
data_type: &DatumKind,
iter: I,
) -> stream::Result<ColumnBlock> {
// TODO(tanruixiang) : ensure there don't use is_dictionary and the datum.clone() is necessary
// ?
// TODO(tanruixiang) : ensure there don't use is_dictionary and the
// datum.clone() is necessary ?
let mut builder = ColumnBlockBuilder::with_capacity(data_type, iter.size_hint().0, false);
for datum in iter {
builder
Expand Down

0 comments on commit 8f705c8

Please sign in to comment.