Currently, the getExpectedValue method for the UNARY_PLUS operator doesn't properly handle type promotion. In SQL (including Materialize/PostgreSQL), applying the unary + operator on a numeric value promotes it to DOUBLE PRECISION. However, the current implementation simply returns the input value as-is, without performing any conversion. This can lead to mismatches in expected vs. actual results during testing and cause invalid test oracle behavior.

Proposed change
Implement the TODO comment by:
- Adding support for type promotion to double precision in the UNARY_PLUS operator's expected value logic
- Promoting the operand to a double using expectedValue.asDouble()
- Creating and returning a MaterializeConstant using the promoted double value
- Ensuring the UNARY_PLUS operator’s declared return type reflects this conversion