| 35 | |
| 36 | |
| 37 | void readUntilSpace(std::string & s, DB::ReadBuffer & buf) |
| 38 | { |
| 39 | s = ""; |
| 40 | while (!buf.eof()) |
| 41 | { |
| 42 | if (isspace(*buf.position())) |
| 43 | return; |
| 44 | s.push_back(*buf.position()); |
| 45 | ++buf.position(); |
| 46 | } |
| 47 | } |
| 48 | |
| 49 | void readMaybeQuoted(std::string & s, DB::ReadBuffer & buf) |
| 50 | { |
no test coverage detected