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