2015-09-18 13:36:10 +00:00
|
|
|
#pragma once
|
|
|
|
|
2019-03-22 12:08:30 +00:00
|
|
|
#include <Core/SettingsCommon.h>
|
2019-05-17 14:34:25 +00:00
|
|
|
#include <Core/Types.h>
|
2019-04-11 19:29:28 +00:00
|
|
|
#include <Parsers/IAST_fwd.h>
|
2019-05-17 14:34:25 +00:00
|
|
|
#include <Storages/IStorage_fwd.h>
|
|
|
|
|
|
|
|
#include <string>
|
|
|
|
#include <memory>
|
2015-09-18 13:36:10 +00:00
|
|
|
|
|
|
|
|
|
|
|
namespace DB
|
|
|
|
{
|
|
|
|
|
2017-01-03 07:37:29 +00:00
|
|
|
class ASTSelectQuery;
|
|
|
|
class Context;
|
2015-09-18 13:36:10 +00:00
|
|
|
|
|
|
|
|
2017-01-04 02:37:47 +00:00
|
|
|
/** Scheme of operation:
|
|
|
|
*
|
|
|
|
* If "main" table in a query is distributed enough (thus, have at least two shards),
|
|
|
|
* and there are non-GLOBAL subqueries in IN or JOIN,
|
|
|
|
* and in that subqueries, there is a table
|
|
|
|
* (in any nesting level in that subquery or in more deep subqueries),
|
|
|
|
* that exist on local server and (according to information on local server) is also distributed enough
|
|
|
|
* then, according to setting 'distributed_product_mode',
|
|
|
|
* either
|
|
|
|
* - throw an exception;
|
|
|
|
* - or add GLOBAL to top subquery;
|
|
|
|
* - or replace database and table name in subquery to remote database and table name,
|
|
|
|
* as Distributed storage on local server knows it.
|
|
|
|
*
|
|
|
|
* Do not recursively preprocess subqueries, as it will be done by calling code.
|
|
|
|
*/
|
2015-09-18 13:36:10 +00:00
|
|
|
|
2017-01-03 07:37:29 +00:00
|
|
|
class InJoinSubqueriesPreprocessor
|
2015-09-18 13:36:10 +00:00
|
|
|
{
|
|
|
|
public:
|
2019-04-11 19:29:28 +00:00
|
|
|
struct CheckShardsAndTables
|
|
|
|
{
|
|
|
|
using Ptr = std::unique_ptr<CheckShardsAndTables>;
|
2015-09-18 13:36:10 +00:00
|
|
|
|
2019-04-11 19:29:28 +00:00
|
|
|
/// These methods could be overriden for the need of the unit test.
|
|
|
|
virtual bool hasAtLeastTwoShards(const IStorage & table) const;
|
|
|
|
virtual std::pair<std::string, std::string> getRemoteDatabaseAndTableName(const IStorage & table) const;
|
|
|
|
virtual ~CheckShardsAndTables() {}
|
|
|
|
};
|
|
|
|
|
|
|
|
InJoinSubqueriesPreprocessor(const Context & context, CheckShardsAndTables::Ptr _checker = std::make_unique<CheckShardsAndTables>())
|
|
|
|
: context(context)
|
|
|
|
, checker(std::move(_checker))
|
|
|
|
{}
|
|
|
|
|
|
|
|
void visit(ASTPtr & query) const;
|
2015-09-18 13:36:10 +00:00
|
|
|
|
|
|
|
private:
|
2017-04-01 07:20:54 +00:00
|
|
|
const Context & context;
|
2019-04-11 19:29:28 +00:00
|
|
|
CheckShardsAndTables::Ptr checker;
|
2015-09-18 13:36:10 +00:00
|
|
|
};
|
|
|
|
|
2017-01-03 07:37:29 +00:00
|
|
|
|
2015-09-18 13:36:10 +00:00
|
|
|
}
|