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

Method dump

src/Storages/MergeTree/MergeTreeReadTask.cpp:27–39  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

25}
26
27String MergeTreeReadTaskColumns::dump() const
28{
29 WriteBufferFromOwnString s;
30 for (size_t i = 0; i < pre_columns.size(); ++i)
31 s << "STEP " << i << ":\n" << pre_columns[i].toString() << "\n";
32
33 s << "MAIN:\n" << columns.toString() << "\n";
34
35 for (size_t i = 0; i < patch_columns.size(); ++i)
36 s << "PATCH " << i << ":\n" << patch_columns[i].toString() << "\n";
37
38 return s.str();
39}
40
41Names MergeTreeReadTaskColumns::getAllColumnNames() const
42{

Callers 10

fillDataMethod · 0.45
fillDataMethod · 0.45
fillDataMethod · 0.45
getPhysicalNameAndTypeFunction · 0.45
operator()Method · 0.45
operator()Method · 0.45
dumpPartitionKeyValueFunction · 0.45
PaimonStreamStateMethod · 0.45

Calls 3

sizeMethod · 0.45
toStringMethod · 0.45
strMethod · 0.45

Tested by

no test coverage detected