mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-18 05:32:52 +00:00
97f2a2213e
* Move some code outside dbms/src folder * Fix paths
76 lines
1.9 KiB
C++
76 lines
1.9 KiB
C++
#include <Functions/IFunctionImpl.h>
|
|
#include <Functions/FunctionHelpers.h>
|
|
#include <Functions/FunctionFactory.h>
|
|
#include <DataTypes/DataTypeArray.h>
|
|
|
|
|
|
namespace DB
|
|
{
|
|
|
|
namespace ErrorCodes
|
|
{
|
|
extern const int FUNCTION_IS_SPECIAL;
|
|
extern const int ILLEGAL_TYPE_OF_ARGUMENT;
|
|
}
|
|
|
|
/** arrayJoin(arr) - a special function - it can not be executed directly;
|
|
* is used only to get the result type of the corresponding expression.
|
|
*/
|
|
class FunctionArrayJoin : public IFunction
|
|
{
|
|
public:
|
|
static constexpr auto name = "arrayJoin";
|
|
static FunctionPtr create(const Context &)
|
|
{
|
|
return std::make_shared<FunctionArrayJoin>();
|
|
}
|
|
|
|
|
|
/// Get the function name.
|
|
String getName() const override
|
|
{
|
|
return name;
|
|
}
|
|
|
|
size_t getNumberOfArguments() const override
|
|
{
|
|
return 1;
|
|
}
|
|
|
|
/** It could return many different values for single argument. */
|
|
bool isDeterministic() const override { return false; }
|
|
|
|
bool isDeterministicInScopeOfQuery() const override
|
|
{
|
|
return false;
|
|
}
|
|
|
|
DataTypePtr getReturnTypeImpl(const DataTypes & arguments) const override
|
|
{
|
|
const DataTypeArray * arr = checkAndGetDataType<DataTypeArray>(arguments[0].get());
|
|
if (!arr)
|
|
throw Exception("Argument for function " + getName() + " must be Array.", ErrorCodes::ILLEGAL_TYPE_OF_ARGUMENT);
|
|
|
|
return arr->getNestedType();
|
|
}
|
|
|
|
void executeImpl(Block &, const ColumnNumbers &, size_t, size_t /*input_rows_count*/) override
|
|
{
|
|
throw Exception("Function " + getName() + " must not be executed directly.", ErrorCodes::FUNCTION_IS_SPECIAL);
|
|
}
|
|
|
|
/// Because of function cannot be executed directly.
|
|
bool isSuitableForConstantFolding() const override
|
|
{
|
|
return false;
|
|
}
|
|
};
|
|
|
|
|
|
void registerFunctionArrayJoin(FunctionFactory & factory)
|
|
{
|
|
factory.registerFunction<FunctionArrayJoin>();
|
|
}
|
|
|
|
}
|