2013-10-30 13:52:02 +00:00
|
|
|
#pragma once
|
|
|
|
|
2018-08-16 02:55:52 +00:00
|
|
|
#include <Parsers/ASTSelectQuery.h>
|
2019-03-11 14:01:45 +00:00
|
|
|
#include <Parsers/IAST_fwd.h>
|
|
|
|
#include <Storages/IStorage.h>
|
|
|
|
|
|
|
|
#include <ext/shared_ptr_helper.h>
|
2013-10-30 13:52:02 +00:00
|
|
|
|
|
|
|
|
|
|
|
namespace DB
|
|
|
|
{
|
|
|
|
|
2020-03-19 23:48:53 +00:00
|
|
|
class StorageView final : public ext::shared_ptr_helper<StorageView>, public IStorage
|
2014-10-29 01:18:50 +00:00
|
|
|
{
|
2019-08-26 19:07:29 +00:00
|
|
|
friend struct ext::shared_ptr_helper<StorageView>;
|
2013-10-30 13:52:02 +00:00
|
|
|
public:
|
2017-04-01 07:20:54 +00:00
|
|
|
std::string getName() const override { return "View"; }
|
2020-01-24 16:20:36 +00:00
|
|
|
bool isView() const override { return true; }
|
2013-11-08 17:43:03 +00:00
|
|
|
|
2017-04-16 15:00:33 +00:00
|
|
|
/// It is passed inside the query and solved at its level.
|
2017-04-01 07:20:54 +00:00
|
|
|
bool supportsSampling() const override { return true; }
|
2017-07-25 21:07:05 +00:00
|
|
|
bool supportsFinal() const override { return true; }
|
2014-10-07 23:08:56 +00:00
|
|
|
|
2020-02-19 16:07:28 +00:00
|
|
|
Pipes read(
|
2017-04-01 07:20:54 +00:00
|
|
|
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,
|
2018-04-19 14:47:09 +00:00
|
|
|
QueryProcessingStage::Enum processed_stage,
|
2019-02-18 23:38:44 +00:00
|
|
|
size_t max_block_size,
|
2017-06-02 15:54:39 +00:00
|
|
|
unsigned num_streams) override;
|
2013-11-08 17:43:03 +00:00
|
|
|
|
2020-02-05 08:22:25 +00:00
|
|
|
ASTPtr getRuntimeViewQuery(const ASTSelectQuery & outer_query, const Context & context);
|
|
|
|
|
|
|
|
ASTPtr getRuntimeViewQuery(ASTSelectQuery * outer_query, const Context & context, bool normalize);
|
|
|
|
|
2017-07-25 21:07:05 +00:00
|
|
|
private:
|
|
|
|
ASTPtr inner_query;
|
2013-10-30 13:52:02 +00:00
|
|
|
|
2017-11-04 03:20:18 +00:00
|
|
|
protected:
|
2017-04-01 07:20:54 +00:00
|
|
|
StorageView(
|
2019-12-04 16:06:55 +00:00
|
|
|
const StorageID & table_id_,
|
2017-09-17 18:49:43 +00:00
|
|
|
const ASTCreateQuery & query,
|
2018-03-06 20:18:34 +00:00
|
|
|
const ColumnsDescription & columns_);
|
2013-10-30 13:52:02 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
}
|