1#include "writeParenthesisedString.h"
2
3namespace DB
4{
5void writeParenthesisedString(const String & s, WriteBuffer & buf)
6{
7 writeChar('(', buf);
8 writeString(s, buf);
9 writeChar(')', buf);
10}
11
12}
13