| 337 | /// Record in a bitmap that the current row is null but nulls are not considered in |
| 338 | /// the current phase (build or probe). |
| 339 | void ALWAYS_INLINE SetRowNull() { null_bitmap_.Set(CurIdx(), true); } |
| 340 | |
| 341 | /// Returns the hash values of the current row. |
| 342 | uint32_t ALWAYS_INLINE CurExprValuesHash() const { return *cur_expr_values_hash_; } |
no test coverage detected