pub type InvertedIndexOutput = IndexBaseOutput;Expand description
Output of the inverted index creation.
Aliased Type§
pub struct InvertedIndexOutput {
pub index_size: u64,
pub row_count: usize,
pub columns: Vec<u32>,
}Fields§
§index_size: u64Size of the index.
row_count: usizeNumber of rows in the index.
columns: Vec<u32>Available columns in the index.