2019-07-29 13:50:13 +00:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <ext/shared_ptr_helper.h>
|
|
|
|
#include <Storages/IStorage.h>
|
|
|
|
|
2019-07-30 12:15:02 +00:00
|
|
|
|
2019-07-29 13:50:13 +00:00
|
|
|
namespace DB
|
|
|
|
{
|
2019-07-31 14:12:05 +00:00
|
|
|
/* One block storage used for values table function
|
|
|
|
* It's structure is similar to IStorageSystemOneBlock
|
2019-07-31 14:06:22 +00:00
|
|
|
*/
|
2020-03-19 23:48:53 +00:00
|
|
|
class StorageValues final : public ext::shared_ptr_helper<StorageValues>, public IStorage
|
2019-07-29 13:50:13 +00:00
|
|
|
{
|
2019-08-26 19:07:29 +00:00
|
|
|
friend struct ext::shared_ptr_helper<StorageValues>;
|
2019-07-29 13:50:13 +00:00
|
|
|
public:
|
|
|
|
std::string getName() const override { return "Values"; }
|
|
|
|
|
2020-08-03 13:54:14 +00:00
|
|
|
Pipe read(
|
2019-07-29 16:20:17 +00:00
|
|
|
const Names & column_names,
|
2020-06-15 19:08:58 +00:00
|
|
|
const StorageMetadataPtr & /*metadata_snapshot*/,
|
2020-09-20 17:52:17 +00:00
|
|
|
SelectQueryInfo & query_info,
|
2019-07-29 16:20:17 +00:00
|
|
|
const Context & context,
|
|
|
|
QueryProcessingStage::Enum processed_stage,
|
|
|
|
size_t max_block_size,
|
|
|
|
unsigned num_streams) override;
|
2019-07-29 13:50:13 +00:00
|
|
|
|
2020-04-29 12:15:23 +00:00
|
|
|
/// Why we may have virtual columns in the storage from a single block?
|
|
|
|
/// Because it used as tmp storage for pushing blocks into views, and some
|
|
|
|
/// views may contain virtual columns from original storage.
|
|
|
|
NamesAndTypesList getVirtuals() const override
|
|
|
|
{
|
|
|
|
return virtuals;
|
|
|
|
}
|
2019-07-29 13:50:13 +00:00
|
|
|
private:
|
|
|
|
Block res_block;
|
2020-04-29 12:15:23 +00:00
|
|
|
NamesAndTypesList virtuals;
|
2019-07-29 13:50:13 +00:00
|
|
|
|
|
|
|
protected:
|
2020-04-29 12:15:23 +00:00
|
|
|
StorageValues(
|
|
|
|
const StorageID & table_id_, const ColumnsDescription & columns_, const Block & res_block_, const NamesAndTypesList & virtuals_ = {});
|
2019-07-29 13:50:13 +00:00
|
|
|
};
|
2019-07-30 12:15:02 +00:00
|
|
|
|
2019-07-29 13:50:13 +00:00
|
|
|
}
|