mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-29 19:12:03 +00:00
12 lines
125 B
C++
12 lines
125 B
C++
#include <Functions/tuple.h>
|
|
|
|
namespace DB
|
|
{
|
|
|
|
REGISTER_FUNCTION(Tuple)
|
|
{
|
|
factory.registerFunction<FunctionTuple>();
|
|
}
|
|
|
|
}
|