MCPcopy Create free account
hub / github.com/apache/arrow / TestExprTree

Class TestExprTree

cpp/src/gandiva/tree_expr_test.cc:35–50  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

33using arrow::int32;
34
35class 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
52TEST_F(TestExprTree, TestField) {
53 Annotator annotator;

Callers

nothing calls this directly

Calls 1

Tested by

no test coverage detected