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

Function copyChunkResized

src/Processors/Transforms/MergeJoinTransform.cpp:215–221  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

213}
214
215Chunk copyChunkResized(const Chunk & lhs, const Chunk & rhs, size_t start, size_t num_rows)
216{
217 Chunk result;
218 copyColumnsResized(lhs.getColumns(), start, num_rows, result);
219 copyColumnsResized(rhs.getColumns(), start, num_rows, result);
220 return result;
221}
222
223Chunk getRowFromChunk(const Chunk & chunk, size_t pos)
224{

Callers 1

handleAnyJoinStateMethod · 0.85

Calls 2

copyColumnsResizedFunction · 0.85
getColumnsMethod · 0.45

Tested by

no test coverage detected