| 47 | } |
| 48 | |
| 49 | void readMaybeQuoted(std::string & s, DB::ReadBuffer & buf) |
| 50 | { |
| 51 | if (!buf.eof() && *buf.position() == '\'') |
| 52 | DB::readQuotedString(s, buf); |
| 53 | else |
| 54 | readUntilSpace(s, buf); |
| 55 | } |
| 56 | |
| 57 | |
| 58 | int main(int argc, char ** argv) |
no test coverage detected