| 1 | #include "FunctionFactory.h" |
|---|---|
| 2 | #include "FunctionsEmbeddedDictionaries.h" |
| 3 | |
| 4 | |
| 5 | namespace DB |
| 6 | { |
| 7 | |
| 8 | void registerFunctionsEmbeddedDictionaries(FunctionFactory & factory) |
| 9 | { |
| 10 | factory.registerFunction<FunctionRegionToCity>(); |
| 11 | factory.registerFunction<FunctionRegionToArea>(); |
| 12 | factory.registerFunction<FunctionRegionToDistrict>(); |
| 13 | factory.registerFunction<FunctionRegionToCountry>(); |
| 14 | factory.registerFunction<FunctionRegionToContinent>(); |
| 15 | factory.registerFunction<FunctionRegionToTopContinent>(); |
| 16 | factory.registerFunction<FunctionRegionToPopulation>(); |
| 17 | factory.registerFunction<FunctionRegionIn>(); |
| 18 | factory.registerFunction<FunctionRegionHierarchy>(); |
| 19 | factory.registerFunction<FunctionRegionToName>(); |
| 20 | } |
| 21 | |
| 22 | } |
| 23 |