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

Method dumpStructure

src/Processors/Chunk.cpp:156–169  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

154}
155
156std::string Chunk::dumpStructure() const
157{
158 WriteBufferFromOwnString out;
159 bool first = true;
160 for (const auto & column : columns)
161 {
162 if (!first)
163 out << ", ";
164 out << column->dumpStructure();
165 first = false;
166 }
167
168 return out.str();
169}
170
171void Chunk::append(const Chunk & chunk)
172{

Callers 15

pullDataMethod · 0.45
pushDataMethod · 0.45
connectFunction · 0.45
transformHeaderMethod · 0.45
setPassThroughMethod · 0.45
generateMethod · 0.45
assertColumnVectorEqFunction · 0.45
CreatingSetsStepMethod · 0.45
unitePlansMethod · 0.45
addStepMethod · 0.45
explainStepFunction · 0.45

Calls 1

strMethod · 0.45

Tested by 1

assertColumnVectorEqFunction · 0.36