blob: 2e2b75068037774a0994970f50cbde9dcd596f0d (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
|
#include "FunctionShowCertificate.h"
#include <Functions/FunctionFactory.h>
namespace DB
{
REGISTER_FUNCTION(ShowCertificate)
{
factory.registerFunction<FunctionShowCertificate>();
}
}
|