| 372 | } |
| 373 | |
| 374 | void writeText(const Array & x, WriteBuffer & buf) |
| 375 | { |
| 376 | String res = applyVisitor(FieldVisitorToString(), Field(x)); |
| 377 | buf.write(res.data(), res.size()); |
| 378 | } |
| 379 | |
| 380 | void readBinary(Tuple & x, ReadBuffer & buf) |
| 381 | { |
nothing calls this directly
no test coverage detected