ClickHouse/dbms/include/DB/Functions/Conditional/ArgsInfo.h
Alexey Arno f2357d50b5 Merge
2016-04-18 17:31:32 +03:00

30 lines
1000 B
C++

#pragma once
#include <DB/DataTypes/IDataType.h>
namespace DB
{
namespace Conditional
{
/// Determine the return type of the function multiIf when all the
/// branches (then, else) have numeric types.
DataTypePtr getReturnTypeForArithmeticArgs(const DataTypes & args);
/// Returns true if all the branches (then, else) have numeric types.
bool hasArithmeticBranches(const DataTypes & args);
/// Returns true if all the branches (then, else) are arrays.
bool hasArrayBranches(const DataTypes & args);
/// Returns true if all the branches (then, else) have the same type name.
bool hasIdenticalTypes(const DataTypes & args);
/// Returns true if all the branches (then, else) are fixed strings.
bool hasFixedStrings(const DataTypes & args);
/// Returns true if all the branches (then, else) are fixed strings of equal length.
bool hasFixedStringsOfIdenticalLength(const DataTypes & args);
/// Returns true if all the branches (then, else) are strings.
bool hasStrings(const DataTypes & args);
}
}