Drain with automatic dictionary encoding for low-cardinality String columns.
(&mut self)
| 170 | |
| 171 | /// Drain with automatic dictionary encoding for low-cardinality String columns. |
| 172 | pub fn drain_optimized(&mut self) -> (ColumnarSchema, Vec<ColumnData>, usize) { |
| 173 | self.try_dict_encode_columns(DICT_ENCODE_MAX_CARDINALITY); |
| 174 | self.drain() |
| 175 | } |
| 176 | |
| 177 | /// Zero-copy row ingest for timeseries and high-throughput paths. |
| 178 | /// |
no test coverage detected