| 1 | #pragma once |
|---|---|
| 2 | |
| 3 | namespace DB |
| 4 | { |
| 5 | |
| 6 | class DictionarySourceFactory; |
| 7 | |
| 8 | void registerDictionarySourceFile(DictionarySourceFactory & source_factory); |
| 9 | void registerDictionarySourceMysql(DictionarySourceFactory & source_factory); |
| 10 | void registerDictionarySourceClickHouse(DictionarySourceFactory & source_factory); |
| 11 | void registerDictionarySourceMongoDB(DictionarySourceFactory & source_factory); |
| 12 | void registerDictionarySourceRedis(DictionarySourceFactory & source_factory); |
| 13 | void registerDictionarySourceXDBC(DictionarySourceFactory & source_factory); |
| 14 | void registerDictionarySourceJDBC(DictionarySourceFactory & source_factory); |
| 15 | void registerDictionarySourceExecutable(DictionarySourceFactory & source_factory); |
| 16 | void registerDictionarySourceHTTP(DictionarySourceFactory & source_factory); |
| 17 | void registerDictionarySourceLibrary(DictionarySourceFactory & source_factory); |
| 18 | |
| 19 | class DictionaryFactory; |
| 20 | void registerDictionaryRangeHashed(DictionaryFactory & factory); |
| 21 | void registerDictionaryComplexKeyHashed(DictionaryFactory & factory); |
| 22 | void registerDictionaryComplexKeyCache(DictionaryFactory & factory); |
| 23 | void registerDictionaryTrie(DictionaryFactory & factory); |
| 24 | void registerDictionaryFlat(DictionaryFactory & factory); |
| 25 | void registerDictionaryHashed(DictionaryFactory & factory); |
| 26 | void registerDictionaryCache(DictionaryFactory & factory); |
| 27 | |
| 28 | void registerDictionaries(); |
| 29 | } |
| 30 |