ClickHouse/dbms/include/DB/DataTypes/typesAreCompatible.h

13 lines
207 B
C
Raw Normal View History

#pragma once
#include <DB/DataTypes/IDataType.h>
namespace DB
{
2014-12-12 15:04:44 +00:00
/** Проверить, что типы совместимые.
*/
bool typesAreCompatible(const IDataType& lhs, const IDataType& rhs);
}