2012-05-30 05:53:09 +00:00
|
|
|
#pragma once
|
|
|
|
|
2017-06-06 17:18:32 +00:00
|
|
|
#include <ext/shared_ptr_helper.h>
|
2016-08-26 21:25:05 +00:00
|
|
|
|
2017-04-01 09:19:00 +00:00
|
|
|
#include <Common/OptimizedRegularExpression.h>
|
|
|
|
#include <Storages/IStorage.h>
|
2020-02-10 15:50:12 +00:00
|
|
|
#include <Interpreters/Context.h>
|
2014-01-10 13:24:50 +00:00
|
|
|
|
2012-05-30 05:53:09 +00:00
|
|
|
|
|
|
|
namespace DB
|
|
|
|
{
|
|
|
|
|
2017-04-16 15:00:33 +00:00
|
|
|
/** A table that represents the union of an arbitrary number of other tables.
|
|
|
|
* All tables must have the same structure.
|
2012-05-30 05:53:09 +00:00
|
|
|
*/
|
2020-03-19 23:48:53 +00:00
|
|
|
class StorageMerge final : public ext::shared_ptr_helper<StorageMerge>, public IStorage
|
2012-05-30 05:53:09 +00:00
|
|
|
{
|
2019-08-26 19:07:29 +00:00
|
|
|
friend struct ext::shared_ptr_helper<StorageMerge>;
|
2012-05-30 05:53:09 +00:00
|
|
|
public:
|
2017-04-01 07:20:54 +00:00
|
|
|
std::string getName() const override { return "Merge"; }
|
|
|
|
|
2017-06-15 14:07:31 +00:00
|
|
|
bool isRemote() const override;
|
|
|
|
|
2017-04-16 15:00:33 +00:00
|
|
|
/// The check is delayed to the read method. It checks the support of the tables used.
|
2017-04-01 07:20:54 +00:00
|
|
|
bool supportsSampling() const override { return true; }
|
|
|
|
bool supportsPrewhere() const override { return true; }
|
|
|
|
bool supportsFinal() const override { return true; }
|
|
|
|
bool supportsIndexForIn() const override { return true; }
|
|
|
|
|
2020-04-01 18:38:01 +00:00
|
|
|
QueryProcessingStage::Enum getQueryProcessingStage(const Context &, QueryProcessingStage::Enum /*to_stage*/, const ASTPtr &) const override;
|
2018-04-19 14:47:09 +00:00
|
|
|
|
2020-08-03 13:54:14 +00:00
|
|
|
Pipe read(
|
2017-04-01 07:20:54 +00:00
|
|
|
const Names & column_names,
|
2020-06-15 19:08:58 +00:00
|
|
|
const StorageMetadataPtr & /*metadata_snapshot*/,
|
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;
|
2017-04-01 07:20:54 +00:00
|
|
|
|
2020-06-10 11:16:31 +00:00
|
|
|
void checkAlterIsPossible(const AlterCommands & commands, const Settings & /* settings */) const override;
|
2019-12-26 18:17:05 +00:00
|
|
|
|
2017-04-16 15:00:33 +00:00
|
|
|
/// you need to add and remove columns in the sub-tables manually
|
|
|
|
/// the structure of sub-tables is not checked
|
2020-06-18 16:10:47 +00:00
|
|
|
void alter(const AlterCommands & params, const Context & context, TableLockHolder & table_lock_holder) override;
|
2014-02-11 18:38:21 +00:00
|
|
|
|
2020-06-17 09:38:47 +00:00
|
|
|
bool mayBenefitFromIndexForIn(
|
|
|
|
const ASTPtr & left_in_operand, const Context & query_context, const StorageMetadataPtr & metadata_snapshot) const override;
|
2018-03-16 09:00:04 +00:00
|
|
|
|
2012-05-30 05:53:09 +00:00
|
|
|
private:
|
2017-04-01 07:20:54 +00:00
|
|
|
String source_database;
|
|
|
|
OptimizedRegularExpression table_name_regexp;
|
2019-01-04 12:10:00 +00:00
|
|
|
Context global_context;
|
2017-04-01 07:20:54 +00:00
|
|
|
|
2020-06-18 16:10:47 +00:00
|
|
|
using StorageWithLockAndName = std::tuple<StoragePtr, TableLockHolder, String>;
|
2019-12-30 18:20:43 +00:00
|
|
|
using StorageListWithLocks = std::list<StorageWithLockAndName>;
|
2017-11-04 03:20:18 +00:00
|
|
|
|
2020-04-09 18:10:27 +00:00
|
|
|
StorageListWithLocks getSelectedTables(const String & query_id, const Settings & settings) const;
|
2017-11-04 03:20:18 +00:00
|
|
|
|
2020-04-09 18:10:27 +00:00
|
|
|
StorageMerge::StorageListWithLocks getSelectedTables(
|
|
|
|
const ASTPtr & query, bool has_virtual_column, const String & query_id, const Settings & settings) const;
|
2017-04-01 07:20:54 +00:00
|
|
|
|
2018-07-05 19:56:51 +00:00
|
|
|
template <typename F>
|
|
|
|
StoragePtr getFirstTable(F && predicate) const;
|
|
|
|
|
2020-05-28 20:10:45 +00:00
|
|
|
DatabaseTablesIteratorPtr getDatabaseIterator(const Context & context) const;
|
2020-04-27 13:55:30 +00:00
|
|
|
|
2020-04-28 10:38:57 +00:00
|
|
|
NamesAndTypesList getVirtuals() const override;
|
2019-06-02 12:11:01 +00:00
|
|
|
|
2017-11-04 03:20:18 +00:00
|
|
|
protected:
|
2017-04-01 07:20:54 +00:00
|
|
|
StorageMerge(
|
2019-12-04 16:06:55 +00:00
|
|
|
const StorageID & table_id_,
|
2018-03-06 20:18:34 +00:00
|
|
|
const ColumnsDescription & columns_,
|
2017-04-01 07:20:54 +00:00
|
|
|
const String & source_database_,
|
|
|
|
const String & table_name_regexp_,
|
|
|
|
const Context & context_);
|
2018-09-18 11:09:21 +00:00
|
|
|
|
2020-06-16 14:25:08 +00:00
|
|
|
Block getQueryHeader(
|
|
|
|
const Names & column_names,
|
|
|
|
const StorageMetadataPtr & metadata_snapshot,
|
|
|
|
const SelectQueryInfo & query_info,
|
|
|
|
const Context & context,
|
|
|
|
QueryProcessingStage::Enum processed_stage);
|
2018-09-18 11:09:21 +00:00
|
|
|
|
2020-08-06 12:24:05 +00:00
|
|
|
Pipe createSources(
|
2020-06-16 15:51:29 +00:00
|
|
|
const StorageMetadataPtr & metadata_snapshot,
|
|
|
|
const SelectQueryInfo & query_info,
|
|
|
|
const QueryProcessingStage::Enum & processed_stage,
|
|
|
|
const UInt64 max_block_size,
|
|
|
|
const Block & header,
|
|
|
|
const StorageWithLockAndName & storage_with_lock,
|
2020-01-31 16:29:40 +00:00
|
|
|
Names & real_column_names,
|
2020-06-16 15:51:29 +00:00
|
|
|
const std::shared_ptr<Context> & modified_context,
|
|
|
|
size_t streams_num,
|
|
|
|
bool has_table_virtual_column,
|
2020-01-31 16:29:40 +00:00
|
|
|
bool concat_streams = false);
|
2018-09-19 10:16:30 +00:00
|
|
|
|
2020-06-16 15:51:29 +00:00
|
|
|
void convertingSourceStream(
|
|
|
|
const Block & header, const StorageMetadataPtr & metadata_snapshot,
|
|
|
|
const Context & context, ASTPtr & query,
|
|
|
|
Pipe & pipe, QueryProcessingStage::Enum processed_stage);
|
2012-05-30 05:53:09 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
}
|