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

Method dumpNames

src/Core/Block.cpp:481–491  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

479}
480
481std::string Block::dumpNames() const
482{
483 WriteBufferFromOwnString out;
484 for (auto it = data.begin(); it != data.end(); ++it)
485 {
486 if (it != data.begin())
487 out << ", ";
488 out << it->name;
489 }
490 return out.str();
491}
492
493
494std::string Block::dumpStructure() const

Callers 13

addExpressionStepFunction · 0.45
addWithFillStepIfNeededFunction · 0.45
appendExpressionFunction · 0.45
getNodeOrThrowMethod · 0.45
readMethod · 0.45
generateMethod · 0.45
createReaderMethod · 0.45
parseTransformHandleMethod · 0.45
getSchemaUnlockedMethod · 0.45
describeJoinActionsFunction · 0.45
updatePipelineMethod · 0.45

Calls 3

beginMethod · 0.45
endMethod · 0.45
strMethod · 0.45

Tested by

no test coverage detected