2011-08-28 02:22:23 +00:00
|
|
|
#pragma once
|
|
|
|
|
2017-06-06 17:18:32 +00:00
|
|
|
#include <ext/shared_ptr_helper.h>
|
2017-04-01 09:19:00 +00:00
|
|
|
#include <Storages/IStorage.h>
|
2011-08-28 02:22:23 +00:00
|
|
|
|
|
|
|
|
|
|
|
namespace DB
|
|
|
|
{
|
|
|
|
|
2016-12-08 02:49:04 +00:00
|
|
|
class Context;
|
|
|
|
|
2011-08-28 02:22:23 +00:00
|
|
|
|
2017-04-16 15:00:33 +00:00
|
|
|
/** Implements storage for the system table One.
|
|
|
|
* The table contains a single column of dummy UInt8 and a single row with a value of 0.
|
|
|
|
* Used when the table is not specified in the query.
|
|
|
|
* Analog of the DUAL table in Oracle and MySQL.
|
2011-08-28 02:22:23 +00:00
|
|
|
*/
|
2017-06-06 18:36:13 +00:00
|
|
|
class StorageSystemOne : public ext::shared_ptr_helper<StorageSystemOne>, public IStorage
|
2011-08-28 02:22:23 +00:00
|
|
|
{
|
2016-08-30 19:27:15 +00:00
|
|
|
friend class ext::shared_ptr_helper<StorageSystemOne>;
|
2011-08-28 02:22:23 +00:00
|
|
|
public:
|
2017-04-01 07:20:54 +00:00
|
|
|
std::string getName() const override { return "SystemOne"; }
|
|
|
|
std::string getTableName() const override { return name; }
|
2011-08-28 02:22:23 +00:00
|
|
|
|
2017-04-01 07:20:54 +00:00
|
|
|
const NamesAndTypesList & getColumnsListImpl() const override { return columns; }
|
2011-08-28 02:22:23 +00:00
|
|
|
|
2017-04-01 07:20:54 +00:00
|
|
|
BlockInputStreams read(
|
|
|
|
const Names & column_names,
|
2017-07-15 03:48:36 +00:00
|
|
|
const SelectQueryInfo & query_info,
|
2017-04-01 07:20:54 +00:00
|
|
|
const Context & context,
|
|
|
|
QueryProcessingStage::Enum & processed_stage,
|
2017-06-02 15:54:39 +00:00
|
|
|
size_t max_block_size,
|
|
|
|
unsigned num_streams) override;
|
2011-08-28 02:22:23 +00:00
|
|
|
|
|
|
|
private:
|
2017-04-01 07:20:54 +00:00
|
|
|
const std::string name;
|
|
|
|
NamesAndTypesList columns;
|
2014-10-10 15:45:43 +00:00
|
|
|
|
2017-04-01 07:20:54 +00:00
|
|
|
StorageSystemOne(const std::string & name_);
|
2011-08-28 02:22:23 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
}
|