pub fn eval_binary_values(op: BinaryOp, l: &Value, r: &Value) -> Result<Value>Expand description
Apply a binary SQL operator to values that have already been evaluated. Execution engines use this when a hot path compiles expression traversal ahead of time but must retain the evaluator’s exact comparison, numeric promotion, NULL, overflow, and division-by-zero semantics.