| 27 | using namespace zvec; |
| 28 | |
| 29 | arrow::Result<Expression> ParseAndValidate( |
| 30 | const std::string &expr, const std::shared_ptr<arrow::Schema> &schema) { |
| 31 | ARROW_ASSIGN_OR_RAISE(auto parsed, ParseToExpression(expr, schema)); |
| 32 | return CheckSupportedArithmeticExpression(parsed, *schema); |
| 33 | } |
| 34 | |
| 35 | class ExprValidatorTest : public ::testing::Test { |
| 36 | protected: |
no test coverage detected