mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-12-04 21:42:39 +00:00
777b5bc15b
... IStorage has deleted copy ctor / assignment already
29 lines
614 B
C++
29 lines
614 B
C++
#pragma once
|
|
|
|
#include <Storages/System/IStorageSystemOneBlock.h>
|
|
|
|
|
|
namespace DB
|
|
{
|
|
|
|
class Context;
|
|
|
|
|
|
/** System table "build_options" with many params used for clickhouse building
|
|
*/
|
|
class StorageSystemBuildOptions final : public IStorageSystemOneBlock<StorageSystemBuildOptions>
|
|
{
|
|
protected:
|
|
void fillData(MutableColumns & res_columns, ContextPtr context, const SelectQueryInfo & query_info) const override;
|
|
|
|
using IStorageSystemOneBlock::IStorageSystemOneBlock;
|
|
|
|
public:
|
|
|
|
std::string getName() const override { return "SystemBuildOptions"; }
|
|
|
|
static NamesAndTypesList getNamesAndTypes();
|
|
};
|
|
|
|
}
|