2019-12-09 13:12:54 +00:00
|
|
|
#include <Functions/IFunctionImpl.h>
|
2019-05-17 14:34:25 +00:00
|
|
|
#include <Storages/IStorage_fwd.h>
|
2019-03-05 10:12:20 +00:00
|
|
|
#include <Storages/TableStructureLockHolder.h>
|
2018-11-30 14:49:35 +00:00
|
|
|
|
|
|
|
namespace DB
|
|
|
|
{
|
2019-09-09 19:43:37 +00:00
|
|
|
|
2018-11-30 14:49:35 +00:00
|
|
|
class Context;
|
|
|
|
class Join;
|
2019-09-09 19:43:37 +00:00
|
|
|
using HashJoinPtr = std::shared_ptr<Join>;
|
2018-11-30 14:49:35 +00:00
|
|
|
|
2019-12-09 14:41:55 +00:00
|
|
|
class ExecutableFunctionJoinGet final : public IExecutableFunctionImpl
|
2018-11-30 14:49:35 +00:00
|
|
|
{
|
|
|
|
public:
|
2019-12-09 14:41:55 +00:00
|
|
|
ExecutableFunctionJoinGet(HashJoinPtr join_, String attr_name_)
|
|
|
|
: join(std::move(join_)), attr_name(std::move(attr_name_)) {}
|
|
|
|
|
2018-11-30 14:49:35 +00:00
|
|
|
static constexpr auto name = "joinGet";
|
|
|
|
|
2019-12-09 14:41:55 +00:00
|
|
|
void execute(Block & block, const ColumnNumbers & arguments, size_t result, size_t input_rows_count) override;
|
|
|
|
|
|
|
|
String getName() const override { return name; }
|
|
|
|
|
|
|
|
private:
|
|
|
|
HashJoinPtr join;
|
|
|
|
const String attr_name;
|
|
|
|
};
|
|
|
|
|
|
|
|
class FunctionJoinGet final : public IFunctionBaseImpl
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
static constexpr auto name = "joinGet";
|
|
|
|
|
|
|
|
FunctionJoinGet(TableStructureReadLockHolder table_lock_, StoragePtr storage_join_,
|
|
|
|
HashJoinPtr join_, String attr_name_,
|
|
|
|
DataTypes argument_types_, DataTypePtr return_type_)
|
2019-08-03 11:02:40 +00:00
|
|
|
: table_lock(std::move(table_lock_))
|
|
|
|
, storage_join(std::move(storage_join_))
|
|
|
|
, join(std::move(join_))
|
2019-12-09 14:41:55 +00:00
|
|
|
, attr_name(std::move(attr_name_))
|
|
|
|
, argument_types(std::move(argument_types_))
|
2019-08-03 11:02:40 +00:00
|
|
|
, return_type(std::move(return_type_))
|
2019-01-25 14:50:31 +00:00
|
|
|
{
|
|
|
|
}
|
2018-11-30 14:49:35 +00:00
|
|
|
|
|
|
|
String getName() const override { return name; }
|
|
|
|
|
2019-12-09 14:41:55 +00:00
|
|
|
const DataTypes & getArgumentTypes() const override { return argument_types; }
|
|
|
|
const DataTypePtr & getReturnType() const override { return return_type; }
|
2018-11-30 14:49:35 +00:00
|
|
|
|
2019-12-09 14:41:55 +00:00
|
|
|
ExecutableFunctionImplPtr prepare(const Block & sample_block, const ColumnNumbers & arguments, size_t result) const override;
|
2018-11-30 14:49:35 +00:00
|
|
|
|
|
|
|
private:
|
2019-03-07 18:04:47 +00:00
|
|
|
TableStructureReadLockHolder table_lock;
|
2019-01-25 14:50:31 +00:00
|
|
|
StoragePtr storage_join;
|
2019-09-09 19:43:37 +00:00
|
|
|
HashJoinPtr join;
|
2018-11-30 14:49:35 +00:00
|
|
|
const String attr_name;
|
2019-12-09 14:41:55 +00:00
|
|
|
DataTypes argument_types;
|
2019-01-25 14:50:31 +00:00
|
|
|
DataTypePtr return_type;
|
2018-11-30 14:49:35 +00:00
|
|
|
};
|
|
|
|
|
2019-12-12 14:16:59 +00:00
|
|
|
class JoinGetOverloadResolver final : public IFunctionOverloadResolverImpl
|
2018-11-30 14:49:35 +00:00
|
|
|
{
|
|
|
|
public:
|
|
|
|
static constexpr auto name = "joinGet";
|
2019-12-12 14:16:59 +00:00
|
|
|
static FunctionOverloadResolverImplPtr create(const Context & context) { return std::make_unique<JoinGetOverloadResolver>(context); }
|
2018-11-30 14:49:35 +00:00
|
|
|
|
2019-12-12 14:16:59 +00:00
|
|
|
explicit JoinGetOverloadResolver(const Context & context_) : context(context_) {}
|
2018-11-30 14:49:35 +00:00
|
|
|
|
|
|
|
String getName() const override { return name; }
|
|
|
|
|
2019-12-09 14:41:55 +00:00
|
|
|
FunctionBaseImplPtr build(const ColumnsWithTypeAndName & arguments, const DataTypePtr &) const override;
|
|
|
|
DataTypePtr getReturnType(const ColumnsWithTypeAndName & arguments) const override;
|
2018-11-30 14:49:35 +00:00
|
|
|
|
|
|
|
bool isVariadic() const override { return true; }
|
|
|
|
size_t getNumberOfArguments() const override { return 0; }
|
|
|
|
|
|
|
|
private:
|
|
|
|
const Context & context;
|
|
|
|
};
|
|
|
|
|
|
|
|
}
|