Whether the memtable is empty.
(&self)
| 90 | |
| 91 | /// Whether the memtable is empty. |
| 92 | pub fn is_empty(&self) -> bool { |
| 93 | self.row_count == 0 |
| 94 | } |
| 95 | |
| 96 | /// Access the schema. |
| 97 | pub fn schema(&self) -> &ColumnarSchema { |
no outgoing calls
no test coverage detected