2017-12-12 15:54:03 +00:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <ext/shared_ptr_helper.h>
|
2018-06-10 19:22:49 +00:00
|
|
|
#include <Formats/FormatSettings.h>
|
2017-12-12 15:54:03 +00:00
|
|
|
#include <Storages/IStorage.h>
|
|
|
|
#include <Storages/MergeTree/MergeTreeData.h>
|
|
|
|
|
|
|
|
|
|
|
|
namespace DB
|
|
|
|
{
|
|
|
|
|
|
|
|
class Context;
|
|
|
|
|
2019-05-20 16:24:36 +00:00
|
|
|
struct StoragesInfo
|
|
|
|
{
|
2019-05-21 13:58:55 +00:00
|
|
|
StoragePtr storage = nullptr;
|
2020-06-18 16:10:47 +00:00
|
|
|
TableLockHolder table_lock;
|
2019-05-20 16:24:36 +00:00
|
|
|
|
|
|
|
String database;
|
|
|
|
String table;
|
|
|
|
String engine;
|
|
|
|
|
2019-05-21 13:58:55 +00:00
|
|
|
bool need_inactive_parts = false;
|
|
|
|
MergeTreeData * data = nullptr;
|
2019-05-20 16:24:36 +00:00
|
|
|
|
|
|
|
operator bool() const { return storage != nullptr; }
|
|
|
|
MergeTreeData::DataPartsVector getParts(MergeTreeData::DataPartStateVector & state, bool has_state_column) const;
|
|
|
|
};
|
|
|
|
|
|
|
|
/** A helper class that enumerates the storages that match given query. */
|
|
|
|
class StoragesInfoStream
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
StoragesInfoStream(const SelectQueryInfo & query_info, const Context & context);
|
|
|
|
StoragesInfo next();
|
|
|
|
|
|
|
|
private:
|
|
|
|
String query_id;
|
2020-04-09 18:10:27 +00:00
|
|
|
Settings settings;
|
|
|
|
|
2019-05-20 16:24:36 +00:00
|
|
|
|
|
|
|
ColumnPtr database_column;
|
|
|
|
ColumnPtr table_column;
|
|
|
|
ColumnPtr active_column;
|
|
|
|
|
|
|
|
size_t next_row;
|
|
|
|
size_t rows;
|
|
|
|
|
|
|
|
using StoragesMap = std::map<std::pair<String, String>, StoragePtr>;
|
|
|
|
StoragesMap storages;
|
|
|
|
};
|
2017-12-12 15:54:03 +00:00
|
|
|
|
|
|
|
/** Implements system table 'parts' which allows to get information about data parts for tables of MergeTree family.
|
|
|
|
*/
|
|
|
|
class StorageSystemPartsBase : public IStorage
|
|
|
|
{
|
|
|
|
public:
|
2020-08-06 12:24:05 +00:00
|
|
|
Pipe read(
|
2020-06-15 19:08:58 +00:00
|
|
|
const Names & column_names,
|
2020-06-17 14:32:25 +00:00
|
|
|
const StorageMetadataPtr & metadata_snapshot,
|
2020-06-15 19:08:58 +00:00
|
|
|
const SelectQueryInfo & query_info,
|
|
|
|
const Context & context,
|
|
|
|
QueryProcessingStage::Enum processed_stage,
|
|
|
|
size_t max_block_size,
|
|
|
|
unsigned num_streams) override;
|
2017-12-12 15:54:03 +00:00
|
|
|
|
2020-04-28 10:38:57 +00:00
|
|
|
NamesAndTypesList getVirtuals() const override;
|
2020-04-27 13:55:30 +00:00
|
|
|
|
2017-12-12 15:54:03 +00:00
|
|
|
private:
|
2020-06-17 14:32:25 +00:00
|
|
|
bool hasStateColumn(const Names & column_names, const StorageMetadataPtr & metadata_snapshot) const;
|
2017-12-12 15:54:03 +00:00
|
|
|
|
|
|
|
protected:
|
2018-06-08 01:51:55 +00:00
|
|
|
const FormatSettings format_settings;
|
|
|
|
|
2020-08-12 20:40:13 +00:00
|
|
|
StorageSystemPartsBase(const StorageID & table_id_, NamesAndTypesList && columns_);
|
2017-12-12 15:54:03 +00:00
|
|
|
|
2017-12-28 18:20:53 +00:00
|
|
|
virtual void processNextStorage(MutableColumns & columns, const StoragesInfo & info, bool has_state_column) = 0;
|
2017-12-12 15:54:03 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
}
|