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

Method concat

src/QueryPipeline/Chain.cpp:113–125  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

111}
112
113Chain Chain::concat(Chain lhs, Chain rhs)
114{
115 if (!lhs.processors.empty() && !rhs.processors.empty())
116 {
117 lhs.appendChain(std::move(rhs));
118 return lhs;
119 }
120
121 if (lhs.processors.empty())
122 return rhs;
123
124 return lhs;
125}
126
127
128IProcessor & Chain::getSource()

Callers 15

bootstrap.min.jsFile · 0.45
JeFunction · 0.45
iiFunction · 0.45
sFunction · 0.45
miFunction · 0.45
showMethod · 0.45
_completeHideMethod · 0.45
_maybeSanitizeMethod · 0.45
showMethod · 0.45
hideMethod · 0.45
_Function · 0.45
QrFunction · 0.45

Calls 1

emptyMethod · 0.45

Tested by

no test coverage detected