| 312 | } |
| 313 | |
| 314 | bool FactorizedTable::isNonOverflowColNull(const uint8_t* nullBuffer, ft_col_idx_t colIdx) const { |
| 315 | DASSERT(colIdx < tableSchema.getNumColumns()); |
| 316 | if (tableSchema.getColumn(colIdx)->hasNoNullGuarantee()) { |
| 317 | return false; |
| 318 | } |
| 319 | return NullBuffer::isNull(nullBuffer, colIdx); |
| 320 | } |
| 321 | |
| 322 | bool FactorizedTable::isNonOverflowColNull(ft_tuple_idx_t tupleIdx, ft_col_idx_t colIdx) const { |
| 323 | DASSERT(colIdx < tableSchema.getNumColumns()); |
no test coverage detected