dbkit-engine 0.0.9

A columnar query execution engine
1
2
3
4
5
6
7
8
9
10
11
12

/// Index into table/column row
pub type RowOffset = usize;

/// Sub-range for slicing views and columns.
#[derive(Copy, Clone)]
pub struct RowRange {
    /// Index into table/column
    pub offset: RowOffset,
    /// Count of rows
    pub rows: usize,
}