| 394 | } |
| 395 | |
| 396 | bool CastableToDecimal(const DataType& type) { |
| 397 | return is_numeric(type.id()) || is_decimal(type.id()); |
| 398 | } |
| 399 | |
| 400 | Status CastBinaryDecimalArgs(DecimalPromotion promotion, std::vector<TypeHolder>* types) { |
| 401 | const DataType& left_type = *(*types)[0]; |
no test coverage detected