| 1 | #pragma once |
|---|---|
| 2 | |
| 3 | |
| 4 | namespace DB |
| 5 | { |
| 6 | |
| 7 | class WriteBuffer; |
| 8 | |
| 9 | |
| 10 | /** Print string in double quotes and with control characters in "<NAME>" form - for output diagnostic info to user. |
| 11 | */ |
| 12 | void verbosePrintString(const char * begin, const char * end, WriteBuffer & out); |
| 13 | |
| 14 | } |
| 15 |