ClickHouse/src/Formats/verbosePrintString.h
2020-04-03 18:14:31 +03:00

15 lines
259 B
C++

#pragma once
namespace DB
{
class WriteBuffer;
/** Print string in double quotes and with control characters in "<NAME>" form - for output diagnostic info to user.
*/
void verbosePrintString(const char * begin, const char * end, WriteBuffer & out);
}