| 25 | |
| 26 | |
| 27 | void JSONRowOutputFormat::writePrefix() |
| 28 | { |
| 29 | JSONUtils::writeObjectStart(*ostr); |
| 30 | JSONUtils::writeMetadata(names, types, settings, *ostr); |
| 31 | JSONUtils::writeFieldDelimiter(*ostr, 2); |
| 32 | JSONUtils::writeArrayStart(*ostr, 1, "data"); |
| 33 | } |
| 34 | |
| 35 | |
| 36 | void JSONRowOutputFormat::writeField(const IColumn & column, const ISerialization & serialization, size_t row_num) |
nothing calls this directly
no test coverage detected