mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-05 15:21:43 +00:00
13 lines
285 B
C++
13 lines
285 B
C++
#pragma once
|
|
|
|
#include <DB/IO/WriteBuffer.h>
|
|
|
|
namespace DB
|
|
{
|
|
|
|
/** Print string in double quotes and with control characters in "<NAME>" form - for output diagnostic info to user.
|
|
*/
|
|
void verbosePrintString(BufferBase::Position begin, BufferBase::Position end, WriteBuffer & out);
|
|
|
|
}
|