Cast value to BIGINT
(&self, value: Value)
| 5080 | |
| 5081 | /// Cast value to BIGINT |
| 5082 | fn cast_to_bigint(&self, value: Value) -> Result<Value, ExecutionError> { |
| 5083 | // For simplicity, treat BIGINT same as INTEGER in our f64-based system |
| 5084 | self.cast_to_integer(value) |
| 5085 | } |
| 5086 | |
| 5087 | /// Cast value to SMALLINT |
| 5088 | fn cast_to_smallint(&self, value: Value) -> Result<Value, ExecutionError> { |
no test coverage detected