Read a single column, decoding all blocks. `col_idx` is the column index in the footer's column metadata.
(&self, col_idx: usize)
| 130 | /// |
| 131 | /// `col_idx` is the column index in the footer's column metadata. |
| 132 | pub fn read_column(&self, col_idx: usize) -> Result<DecodedColumn, ColumnarError> { |
| 133 | self.read_column_filtered(col_idx, &[]) |
| 134 | } |
| 135 | |
| 136 | /// Read a single column with predicate pushdown. |
| 137 | /// |