Files
doris/be/test/agent/mock_task_worker_pool.h
李超勇 6486be64c3 fix license statement (#29)
* change picture to word

* change picture to word

* SHOW FULL TABLES WHERE Table_type != VIEW sql can not execute

* change license description
2017-08-18 19:16:23 +08:00

37 lines
1.3 KiB
C++

// Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved
// Licensed 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.
#ifndef BDG_PALO_BE_SRC_MOCK_MOCK_TASK_WORKER_POOL_H
#define BDG_PALO_BE_SRC_MOCK_MOCK_TASK_WORKER_POOL_H
#include "agent/status.h"
namespace palo {
const uint32_t TASK_FINISH_MAX_RETRY = 3;
const uint32_t PUSH_MAX_RETRY = 3;
const uint32_t REPORT_TASK_WORKER_COUNT = 1;
const uint32_t REPORT_DISK_STATE_WORKER_COUNT = 1;
const uint32_t REPORT_OLAP_TABLE_WORKER_COUNT = 1;
class MockTaskWorkerPool : public TaskWorkerPool {
public:
MOCK_METHOD0(start, void());
MOCK_METHOD1(submit_task, void(const TAgentTaskRequest& task));
MOCK_METHOD0(get_command_executor, CommandExecutor*());
}; // class MockTaskWorkerPool
} // namespace palo
#endif // BDG_PALO_BE_SRC_MOCK_MOCK_TASK_WORKER_POOL_H