| 11 | Expression::~Expression() = default; |
| 12 | |
| 13 | void Expression::cast(const LogicalType&) { |
| 14 | // LCOV_EXCL_START |
| 15 | throw BinderException( |
| 16 | std::format("Data type of expression {} should not be modified.", toString())); |
| 17 | // LCOV_EXCL_STOP |
| 18 | } |
| 19 | |
| 20 | expression_vector Expression::splitOnAND() { |
| 21 | expression_vector result; |
no test coverage detected