ClickHouse/dbms/src/Storages/System/StorageSystemOne.cpp

47 lines
1.1 KiB
C++
Raw Normal View History

#include <Common/Exception.h>
2011-08-28 02:22:23 +00:00
#include <Columns/ColumnsNumber.h>
#include <DataTypes/DataTypesNumber.h>
#include <DataStreams/OneBlockInputStream.h>
#include <Storages/System/StorageSystemOne.h>
2011-08-28 02:22:23 +00:00
namespace DB
{
StorageSystemOne::StorageSystemOne(const std::string & name_)
: name(name_), columns{{"dummy", std::make_shared<DataTypeUInt8>()}}
2011-08-28 02:22:23 +00:00
{
}
StoragePtr StorageSystemOne::create(const std::string & name_)
{
return make_shared(name_);
}
2011-08-28 02:22:23 +00:00
2012-01-09 19:20:48 +00:00
BlockInputStreams StorageSystemOne::read(
const Names & column_names,
const ASTPtr & query,
const Context & context,
QueryProcessingStage::Enum & processed_stage,
const size_t max_block_size,
const unsigned threads)
2011-08-28 02:22:23 +00:00
{
check(column_names);
processed_stage = QueryProcessingStage::FetchColumns;
2012-05-08 11:19:00 +00:00
Block block;
ColumnWithTypeAndName col;
col.name = "dummy";
col.type = std::make_shared<DataTypeUInt8>();
col.column = ColumnConstUInt8(1, 0).convertToFullColumn();
block.insert(std::move(col));
return BlockInputStreams(1, std::make_shared<OneBlockInputStream>(block));
2011-08-28 02:22:23 +00:00
}
}