ClickHouse/src/Functions/FunctionShowCertificate.cpp

13 lines
192 B
C++
Raw Normal View History

#include "FunctionShowCertificate.h"
#include <Functions/FunctionFactory.h>
namespace DB
{
REGISTER_FUNCTION(ShowCertificate)
{
factory.registerFunction<FunctionShowCertificate>();
}
}