mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-12-14 18:32:29 +00:00
48 lines
1.3 KiB
C++
48 lines
1.3 KiB
C++
|
#pragma once
|
||
|
#include <Common/config.h>
|
||
|
|
||
|
#include <Storages/IStorage.h>
|
||
|
#include <IO/CompressionMethod.h>
|
||
|
#include <common/logger_useful.h>
|
||
|
#include <ext/shared_ptr_helper.h>
|
||
|
|
||
|
namespace DB
|
||
|
{
|
||
|
/**
|
||
|
* This class represents table engine for external executable files.
|
||
|
*/
|
||
|
class StorageExecutable final : public ext::shared_ptr_helper<StorageExecutable>, public IStorage
|
||
|
{
|
||
|
friend struct ext::shared_ptr_helper<StorageExecutable>;
|
||
|
public:
|
||
|
String getName() const override { return "Executable"; }
|
||
|
|
||
|
Pipe read(
|
||
|
const Names & column_names,
|
||
|
const StorageMetadataPtr & /*metadata_snapshot*/,
|
||
|
SelectQueryInfo & query_info,
|
||
|
const Context & context,
|
||
|
QueryProcessingStage::Enum processed_stage,
|
||
|
size_t max_block_size,
|
||
|
unsigned num_streams) override;
|
||
|
|
||
|
protected:
|
||
|
StorageExecutable(
|
||
|
const StorageID & table_id,
|
||
|
const String & format_name_,
|
||
|
const String & file_path_,
|
||
|
const ColumnsDescription & columns,
|
||
|
const ConstraintsDescription & constraints,
|
||
|
Context & context_,
|
||
|
CompressionMethod compression_method_);
|
||
|
|
||
|
private:
|
||
|
String format_name;
|
||
|
String file_path;
|
||
|
Context & context;
|
||
|
CompressionMethod compression_method;
|
||
|
Poco::Logger * log = &Poco::Logger::get("StorageExecutable");
|
||
|
};
|
||
|
}
|
||
|
|