| 301 | |
| 302 | template <typename Vector> |
| 303 | void readStringUntilEOFInto(Vector & s, ReadBuffer & buf) |
| 304 | { |
| 305 | while (!buf.eof()) |
| 306 | { |
| 307 | appendToStringOrVector(s, buf, buf.buffer().end()); |
| 308 | buf.position() = buf.buffer().end(); |
| 309 | } |
| 310 | } |
| 311 | |
| 312 | UInt128 stringToUUID(const String & str) |
| 313 | { |
no test coverage detected