mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-26 09:32:01 +00:00
4088c0a7f3
Automated register all functions with below naming convention by iterating through the symbols: void DB::registerXXX(DB::FunctionFactory &)
23 lines
702 B
C++
23 lines
702 B
C++
#include "FunctionFactory.h"
|
|
#include "FunctionsEmbeddedDictionaries.h"
|
|
|
|
|
|
namespace DB
|
|
{
|
|
|
|
REGISTER_FUNCTION(EmbeddedDictionaries)
|
|
{
|
|
factory.registerFunction<FunctionRegionToCity>();
|
|
factory.registerFunction<FunctionRegionToArea>();
|
|
factory.registerFunction<FunctionRegionToDistrict>();
|
|
factory.registerFunction<FunctionRegionToCountry>();
|
|
factory.registerFunction<FunctionRegionToContinent>();
|
|
factory.registerFunction<FunctionRegionToTopContinent>();
|
|
factory.registerFunction<FunctionRegionToPopulation>();
|
|
factory.registerFunction<FunctionRegionIn>();
|
|
factory.registerFunction<FunctionRegionHierarchy>();
|
|
factory.registerFunction<FunctionRegionToName>();
|
|
}
|
|
|
|
}
|