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

40 lines
999 B
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_)
2011-08-28 02:22:23 +00:00
{
columns.ordinary = NamesAndTypesList{{"dummy", std::make_shared<DataTypeUInt8>()}};
2011-08-28 02:22:23 +00:00
}
2012-01-09 19:20:48 +00:00
BlockInputStreams StorageSystemOne::read(
const Names & column_names,
2017-12-02 02:47:12 +00:00
const SelectQueryInfo &,
const Context &,
QueryProcessingStage::Enum & processed_stage,
2017-12-02 02:47:12 +00:00
const size_t /*max_block_size*/,
const unsigned /*num_streams*/)
2011-08-28 02:22:23 +00:00
{
check(column_names);
processed_stage = QueryProcessingStage::FetchColumns;
2012-05-08 11:19:00 +00:00
return BlockInputStreams(1, std::make_shared<OneBlockInputStream>(
Block{ColumnWithTypeAndName(
DataTypeUInt8().createColumnConst(1, UInt64(0))->convertToFullColumnIfConst(),
std::make_shared<DataTypeUInt8>(),
"dummy")}));
2011-08-28 02:22:23 +00:00
}
}