MCPcopy Create free account
hub / github.com/ClickHouse/ClickHouse / writeArrayStart

Function writeArrayStart

src/Formats/JSONUtils.cpp:372–378  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

370 }
371
372 void writeArrayStart(WriteBuffer & out, size_t indent, const char * title)
373 {
374 if (title)
375 writeTitle(title, out, indent, "\n");
376 writeChar('\t', indent, out);
377 writeCString("[\n", out);
378 }
379
380 void writeCompactArrayStart(WriteBuffer & out, size_t indent, const char * title)
381 {

Callers 3

writeChunkStartMethod · 0.85
writePrefixMethod · 0.85
writeMetadataFunction · 0.85

Calls 2

writeTitleFunction · 0.85
writeCharFunction · 0.85

Tested by

no test coverage detected