| // Licensed to the Apache Software Foundation (ASF) under one |
| // or more contributor license agreements. See the NOTICE file |
| // distributed with this work for additional information |
| // regarding copyright ownership. The ASF licenses this file |
| // to you under the Apache License, Version 2.0 (the |
| // "License"); you may not use this file except in compliance |
| // with the License. You may obtain a copy of the License at |
| // |
| // http://www.apache.org/licenses/LICENSE-2.0 |
| // |
| // Unless required by applicable law or agreed to in writing, |
| // software distributed under the License is distributed on an |
| // "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY |
| // KIND, either express or implied. See the License for the |
| // specific language governing permissions and limitations |
| // under the License. |
| |
| #include <gen_cpp/DataSinks_types.h> |
| #include <gen_cpp/Descriptors_types.h> |
| #include <gmock/gmock-actions.h> |
| #include <gmock/gmock-function-mocker.h> |
| #include <gmock/gmock-spec-builders.h> |
| #include <gmock/gmock.h> |
| #include <gtest/gtest.h> |
| |
| #include <memory> |
| |
| #include "common/object_pool.h" |
| #include "exec/pipeline/pipeline_task.h" |
| #include "exec/spill/spill_file_manager.h" |
| #include "runtime/fragment_mgr.h" |
| #include "runtime/runtime_profile.h" |
| #include "testutil/mock/mock_runtime_state.h" |
| |
| namespace doris { |
| class JoinTestHelper { |
| public: |
| virtual ~JoinTestHelper() = default; |
| void SetUp(); |
| void TearDown(); |
| |
| // virtual TPlanNode create_test_plan_node() = 0; |
| // virtual TDescriptorTable create_test_table_descriptor(bool nullable) = 0; |
| |
| std::unique_ptr<MockRuntimeState> runtime_state; |
| std::unique_ptr<ObjectPool> obj_pool; |
| std::shared_ptr<QueryContext> query_ctx; |
| std::shared_ptr<RuntimeProfile> runtime_profile; |
| std::shared_ptr<PipelineTask> pipeline_task; |
| DescriptorTbl* desc_tbl; |
| }; |
| |
| } // namespace doris |