| 515 | template void readQuoted<Decimal256>(DecimalField<Decimal256> & x, ReadBuffer & buf); |
| 516 | |
| 517 | void writeFieldText(const Field & x, WriteBuffer & buf) |
| 518 | { |
| 519 | String res = Field::dispatch(FieldVisitorToString(), x); |
| 520 | buf.write(res.data(), res.size()); |
| 521 | } |
| 522 | |
| 523 | void writeFieldBinary(const Field & x, WriteBuffer & buf) |
| 524 | { |
no test coverage detected