mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-21 15:12:02 +00:00
37 lines
807 B
C++
37 lines
807 B
C++
#include <DataTypes/DataTypeFunction.h>
|
|
#include <IO/WriteBufferFromString.h>
|
|
#include <IO/Operators.h>
|
|
|
|
|
|
namespace DB
|
|
{
|
|
|
|
std::string DataTypeFunction::doGetName() const
|
|
{
|
|
WriteBufferFromOwnString res;
|
|
|
|
res << "Function(";
|
|
if (argument_types.size() > 1)
|
|
res << "(";
|
|
for (size_t i = 0; i < argument_types.size(); ++i)
|
|
{
|
|
if (i > 0)
|
|
res << ", ";
|
|
const DataTypePtr & type = argument_types[i];
|
|
res << (type ? type->getName() : "?");
|
|
}
|
|
if (argument_types.size() > 1)
|
|
res << ")";
|
|
res << " -> ";
|
|
res << (return_type ? return_type->getName() : "?");
|
|
res << ")";
|
|
return res.str();
|
|
}
|
|
|
|
bool DataTypeFunction::equals(const IDataType & rhs) const
|
|
{
|
|
return typeid(rhs) == typeid(*this) && getName() == rhs.getName();
|
|
}
|
|
|
|
}
|