aarondb/shared/columnar

Types

pub type ColumnChunk {
  ColumnChunk(
    attribute: String,
    values: List(fact.Value),
    max_tx: Int,
    is_compressed: Bool,
  )
}

Constructors

  • ColumnChunk(
      attribute: String,
      values: List(fact.Value),
      max_tx: Int,
      is_compressed: Bool,
    )
pub type ColumnarStore =
  dict.Dict(String, List(ColumnChunk))
Search Document