True if there are no records to flush, i.e. [`Self::len`] is zero.
(&self)
| 665 | |
| 666 | /// True if there are no records to flush, i.e. [`Self::len`] is zero. |
| 667 | pub fn is_empty(&self) -> bool { |
| 668 | self.len() == 0 |
| 669 | } |
| 670 | |
| 671 | /// Flushes the currently buffered data to a [`RecordBatch`] |
| 672 | /// |
no test coverage detected