blob: e8740ae228693a62c92d97d342e70dc8c82f7992 [file] [log] [blame]
/*
* 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.
*/
#ifndef HAWQ_SRC_TEST_FEATURE_LIB_GPFDIST_H_
#define HAWQ_SRC_TEST_FEATURE_LIB_GPFDIST_H_
#include <string>
#include "lib/sql_util.h"
#include "lib/string_util.h"
namespace hawq {
namespace test {
/**
* Gpfdist common library.
* start gpfdist server and stop gpfdist server.
*/
class GPfdist {
public:
explicit GPfdist(hawq::test::SQLUtility *sqlUtil_) : util(sqlUtil_) {}
~GPfdist() {}
void init_gpfdist();
void finalize_gpfdist();
private:
hawq::test::SQLUtility *util = nullptr;
};
} // namespace test
} // namespace hawq
#endif