(&mut self)
| 585 | } |
| 586 | |
| 587 | fn append_null(&mut self) { |
| 588 | match self { |
| 589 | Builder::Bool(b) => b.append_null(), |
| 590 | Builder::I64(b) => b.append_null(), |
| 591 | Builder::F64(b) => b.append_null(), |
| 592 | Builder::U64(b) => b.append_null(), |
| 593 | Builder::String(b) => b.append_null(), |
| 594 | Builder::Tag(b) => b.append_null(), |
| 595 | Builder::Time(b) => b.append_null(), |
| 596 | } |
| 597 | } |
| 598 | |
| 599 | fn into_influxcol_and_arrow(self) -> (InfluxColumnType, ArrayRef) { |
| 600 | match self { |
no outgoing calls
no test coverage detected