mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-17 13:13:36 +00:00
22 lines
477 B
C++
22 lines
477 B
C++
#pragma once
|
|
|
|
#include <TableFunctions/ITableFunction.h>
|
|
|
|
|
|
namespace DB
|
|
{
|
|
|
|
/* catboostPool('column_descriptions_file', 'dataset_description_file')
|
|
* Create storage from CatBoost dataset.
|
|
*/
|
|
class TableFunctionCatBoostPool : public ITableFunction
|
|
{
|
|
public:
|
|
static constexpr auto name = "catBoostPool";
|
|
std::string getName() const override { return name; }
|
|
private:
|
|
StoragePtr executeImpl(const ASTPtr & ast_function, const Context & context) const override;
|
|
};
|
|
|
|
}
|