| 33 | using arrow::int32; |
| 34 | |
| 35 | class TestExprTree : public ::testing::Test { |
| 36 | public: |
| 37 | void SetUp() { |
| 38 | i0_ = field("i0", int32()); |
| 39 | i1_ = field("i1", int32()); |
| 40 | |
| 41 | b0_ = field("b0", boolean()); |
| 42 | } |
| 43 | |
| 44 | protected: |
| 45 | FieldPtr i0_; // int32 |
| 46 | FieldPtr i1_; // int32 |
| 47 | |
| 48 | FieldPtr b0_; // bool |
| 49 | std::shared_ptr<FunctionRegistry> registry_ = gandiva::default_function_registry(); |
| 50 | }; |
| 51 | |
| 52 | TEST_F(TestExprTree, TestField) { |
| 53 | Annotator annotator; |
nothing calls this directly
no test coverage detected