pub fn eval_binary_values_with_integer_width(
op: BinaryOp,
l: &Value,
r: &Value,
integer_width: Option<IntegerWidth>,
) -> Result<Value>Expand description
Evaluate an operator while retaining the integer type selected by SQL
operator resolution. The dynamic Value carrier stores all integers as
i64, so expression plans pass this width alongside the operands.