mito2::sst::index

Type Alias InvertedIndexOutput

Source
pub type InvertedIndexOutput = IndexBaseOutput;
Expand description

Output of the inverted index creation.

Aliased Type§

struct InvertedIndexOutput {
    pub index_size: u64,
    pub row_count: usize,
    pub columns: Vec<u32>,
}

Fields§

§index_size: u64

Size of the index.

§row_count: usize

Number of rows in the index.

§columns: Vec<u32>

Available columns in the index.