MCPcopy Create free account
hub / github.com/LadybugDB/ladybug / isOverflowColNull

Method isOverflowColNull

src/processor/result/factorized_table.cpp:305–312  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

303}
304
305bool FactorizedTable::isOverflowColNull(const uint8_t* nullBuffer, ft_tuple_idx_t tupleIdx,
306 ft_col_idx_t colIdx) const {
307 DASSERT(colIdx < tableSchema.getNumColumns());
308 if (tableSchema.getColumn(colIdx)->hasNoNullGuarantee()) {
309 return false;
310 }
311 return NullBuffer::isNull(nullBuffer, tupleIdx);
312}
313
314bool FactorizedTable::isNonOverflowColNull(const uint8_t* nullBuffer, ft_col_idx_t colIdx) const {
315 DASSERT(colIdx < tableSchema.getNumColumns());

Callers 1

Calls 4

hasNoNullGuaranteeMethod · 0.80
getColumnMethod · 0.80
isNullFunction · 0.50
getNumColumnsMethod · 0.45

Tested by

no test coverage detected