| 50 | } |
| 51 | |
| 52 | void assertCannotResolve( |
| 53 | const std::shared_ptr<exec::FunctionSignature>& signature, |
| 54 | const std::vector<TypePtr>& actualTypes) { |
| 55 | exec::SignatureBinder binder(*signature, actualTypes); |
| 56 | ASSERT_FALSE(binder.tryBind()); |
| 57 | } |
| 58 | |
| 59 | TEST(SignatureBinderTest, decimals) { |
| 60 | // Decimal Add/Subtract. |