mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-12-04 05:22:17 +00:00
13 lines
221 B
C++
13 lines
221 B
C++
|
#include "FunctionShowCertificate.h"
|
||
|
#include <Functions/FunctionFactory.h>
|
||
|
|
||
|
namespace DB
|
||
|
{
|
||
|
|
||
|
void registerFunctionShowCertificate(FunctionFactory & factory)
|
||
|
{
|
||
|
factory.registerFunction<FunctionShowCertificate>();
|
||
|
}
|
||
|
|
||
|
}
|