mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-14 11:33:46 +00:00
43 lines
1.0 KiB
C++
43 lines
1.0 KiB
C++
#pragma once
|
|
|
|
#include <DataTypes/IDataTypeDummy.h>
|
|
|
|
|
|
namespace DB
|
|
{
|
|
|
|
/** Special data type, representing lambda expression.
|
|
*/
|
|
class DataTypeFunction final : public IDataTypeDummy
|
|
{
|
|
private:
|
|
DataTypes argument_types;
|
|
DataTypePtr return_type;
|
|
|
|
public:
|
|
static constexpr bool is_parametric = true;
|
|
bool isParametric() const override { return true; }
|
|
|
|
/// Some types could be still unknown.
|
|
explicit DataTypeFunction(const DataTypes & argument_types_ = DataTypes(), const DataTypePtr & return_type_ = nullptr)
|
|
: argument_types(argument_types_), return_type(return_type_) {}
|
|
|
|
std::string doGetName() const override;
|
|
const char * getFamilyName() const override { return "Function"; }
|
|
TypeIndex getTypeId() const override { return TypeIndex::Function; }
|
|
|
|
const DataTypes & getArgumentTypes() const
|
|
{
|
|
return argument_types;
|
|
}
|
|
|
|
const DataTypePtr & getReturnType() const
|
|
{
|
|
return return_type;
|
|
}
|
|
|
|
bool equals(const IDataType & rhs) const override;
|
|
};
|
|
|
|
}
|