Skip to content

Commit

Permalink
Merge pull request #1711 from quickwit-oss/sparse_dense_index
Browse files Browse the repository at this point in the history
add dense codec
  • Loading branch information
PSeitz committed Dec 9, 2022
2 parents 09f65e5 + 976128a commit a05a003
Show file tree
Hide file tree
Showing 3 changed files with 470 additions and 0 deletions.
4 changes: 4 additions & 0 deletions fastfield_codecs/src/lib.rs
Expand Up @@ -37,12 +37,16 @@ mod line;
mod linear;
mod monotonic_mapping;
mod monotonic_mapping_u128;
mod null_index;
mod null_index_footer;

mod column;
mod gcd;
mod serialize;

/// TODO: remove when codec is used
pub use null_index::*;

use self::bitpacked::BitpackedCodec;
use self::blockwise_linear::BlockwiseLinearCodec;
pub use self::column::{monotonic_map_column, Column, IterColumn, VecColumn};
Expand Down

0 comments on commit a05a003

Please sign in to comment.