| 200 | |
| 201 | /// Returns if the expression at 'expr_idx' is evaluated to NULL for the current row. |
| 202 | bool ALWAYS_INLINE ExprValueNull(int expr_idx) const { |
| 203 | return static_cast<bool>(*(expr_values_cache_.cur_expr_values_null() + expr_idx)); |
| 204 | } |
| 205 | |
| 206 | /// Evaluate and hash the build/probe row, saving the evaluation to the current row of |
| 207 | /// the ExprValuesCache in this hash table context: the results are saved in |
no test coverage detected