mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-12-15 19:02:04 +00:00
15 lines
326 B
C++
15 lines
326 B
C++
|
#pragma once
|
||
|
|
||
|
#include <Core/Field.h>
|
||
|
#include <DataTypes/IDataType.h>
|
||
|
|
||
|
|
||
|
namespace DB
|
||
|
{
|
||
|
|
||
|
void assertNoParameters(const std::string & name, const Array & parameters);
|
||
|
void assertUnary(const std::string & name, const DataTypes & argument_types);
|
||
|
void assertBinary(const std::string & name, const DataTypes & argument_types);
|
||
|
|
||
|
}
|