| 133 | } |
| 134 | |
| 135 | void writeProbablyBackQuotedStringMySQL(std::string_view s, WriteBuffer & buf) |
| 136 | { |
| 137 | writeProbablyQuotedStringImpl(s, buf, [](std::string_view s_, WriteBuffer & buf_) { writeBackQuotedStringMySQL(s_, buf_); }); |
| 138 | } |
| 139 | |
| 140 | void writePointerHex(const void * ptr, WriteBuffer & buf) |
| 141 | { |
no test coverage detected