MCPcopy Create free account
hub / github.com/ByConity/ByConity / convertColumnsToNullable

Function convertColumnsToNullable

src/Interpreters/join_common.cpp:157–161  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

155}
156
157void convertColumnsToNullable(Block & block, size_t starting_pos)
158{
159 for (size_t i = starting_pos; i < block.columns(); ++i)
160 convertColumnToNullable(block.getByPosition(i));
161}
162
163/// Convert column to nullable. If column LowCardinality or Const, convert nested column.
164/// Returns nullptr if conversion cannot be performed.

Callers 9

NestedLoopJoinMethod · 0.85
addJoinedBlockMethod · 0.85
joinTotalsFunction · 0.85
HashJoinMethod · 0.85
joinBlockImplMethod · 0.85
MergeJoinMethod · 0.85
joinBlockMethod · 0.85

Calls 2

convertColumnToNullableFunction · 0.85
columnsMethod · 0.80

Tested by

no test coverage detected