├── LICENSE ├── README.md ├── dict └── plugin │ └── testdata │ ├── asn.csv │ ├── organization.csv │ └── sales.csv ├── imgs ├── official.jpg └── xiandu.JPG └── source ├── bridge └── clickhouse-jdbc-bridge-1.0.jar └── dict ├── built-in └── geo │ ├── geo_data_201907071934.csv │ ├── geotargets-2019-05-02.csv │ ├── regions_hierarchy.txt │ ├── regions_hierarchy_ru.txt │ ├── regions_names_ar.txt │ ├── regions_names_by.txt │ ├── regions_names_en.txt │ ├── regions_names_kz.txt │ ├── regions_names_ru.txt │ ├── regions_names_tr.txt │ └── regions_names_ua.txt └── plugin ├── config ├── test_ complex_key_cache_dictionary.xml ├── test_cache_dictionary.xml ├── test_ch_dictionary.xml ├── test_complex_key_hashed_dictionary.xml ├── test_flat_dictionary.xml ├── test_hashed_dictionary.xml ├── test_ip_trie_dictionary.xml ├── test_mongodb_dictionary.xml ├── test_mysql_dictionary.xml └── test_range_hashed_dictionary.xml ├── script ├── mongodb.sql └── mysql-dict-source.sql └── testdata ├── asn.csv ├── organization.csv └── sales.csv /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nauu/clickhousebook/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nauu/clickhousebook/HEAD/README.md -------------------------------------------------------------------------------- /dict/plugin/testdata/asn.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nauu/clickhousebook/HEAD/dict/plugin/testdata/asn.csv -------------------------------------------------------------------------------- /dict/plugin/testdata/organization.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nauu/clickhousebook/HEAD/dict/plugin/testdata/organization.csv -------------------------------------------------------------------------------- /dict/plugin/testdata/sales.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nauu/clickhousebook/HEAD/dict/plugin/testdata/sales.csv -------------------------------------------------------------------------------- /imgs/official.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nauu/clickhousebook/HEAD/imgs/official.jpg -------------------------------------------------------------------------------- /imgs/xiandu.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nauu/clickhousebook/HEAD/imgs/xiandu.JPG -------------------------------------------------------------------------------- /source/bridge/clickhouse-jdbc-bridge-1.0.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nauu/clickhousebook/HEAD/source/bridge/clickhouse-jdbc-bridge-1.0.jar -------------------------------------------------------------------------------- /source/dict/built-in/geo/geo_data_201907071934.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nauu/clickhousebook/HEAD/source/dict/built-in/geo/geo_data_201907071934.csv -------------------------------------------------------------------------------- /source/dict/built-in/geo/geotargets-2019-05-02.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nauu/clickhousebook/HEAD/source/dict/built-in/geo/geotargets-2019-05-02.csv -------------------------------------------------------------------------------- /source/dict/built-in/geo/regions_hierarchy.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nauu/clickhousebook/HEAD/source/dict/built-in/geo/regions_hierarchy.txt -------------------------------------------------------------------------------- /source/dict/built-in/geo/regions_hierarchy_ru.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nauu/clickhousebook/HEAD/source/dict/built-in/geo/regions_hierarchy_ru.txt -------------------------------------------------------------------------------- /source/dict/built-in/geo/regions_names_ar.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nauu/clickhousebook/HEAD/source/dict/built-in/geo/regions_names_ar.txt -------------------------------------------------------------------------------- /source/dict/built-in/geo/regions_names_by.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nauu/clickhousebook/HEAD/source/dict/built-in/geo/regions_names_by.txt -------------------------------------------------------------------------------- /source/dict/built-in/geo/regions_names_en.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nauu/clickhousebook/HEAD/source/dict/built-in/geo/regions_names_en.txt -------------------------------------------------------------------------------- /source/dict/built-in/geo/regions_names_kz.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nauu/clickhousebook/HEAD/source/dict/built-in/geo/regions_names_kz.txt -------------------------------------------------------------------------------- /source/dict/built-in/geo/regions_names_ru.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nauu/clickhousebook/HEAD/source/dict/built-in/geo/regions_names_ru.txt -------------------------------------------------------------------------------- /source/dict/built-in/geo/regions_names_tr.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nauu/clickhousebook/HEAD/source/dict/built-in/geo/regions_names_tr.txt -------------------------------------------------------------------------------- /source/dict/built-in/geo/regions_names_ua.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nauu/clickhousebook/HEAD/source/dict/built-in/geo/regions_names_ua.txt -------------------------------------------------------------------------------- /source/dict/plugin/config/test_ complex_key_cache_dictionary.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nauu/clickhousebook/HEAD/source/dict/plugin/config/test_ complex_key_cache_dictionary.xml -------------------------------------------------------------------------------- /source/dict/plugin/config/test_cache_dictionary.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nauu/clickhousebook/HEAD/source/dict/plugin/config/test_cache_dictionary.xml -------------------------------------------------------------------------------- /source/dict/plugin/config/test_ch_dictionary.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nauu/clickhousebook/HEAD/source/dict/plugin/config/test_ch_dictionary.xml -------------------------------------------------------------------------------- /source/dict/plugin/config/test_complex_key_hashed_dictionary.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nauu/clickhousebook/HEAD/source/dict/plugin/config/test_complex_key_hashed_dictionary.xml -------------------------------------------------------------------------------- /source/dict/plugin/config/test_flat_dictionary.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nauu/clickhousebook/HEAD/source/dict/plugin/config/test_flat_dictionary.xml -------------------------------------------------------------------------------- /source/dict/plugin/config/test_hashed_dictionary.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nauu/clickhousebook/HEAD/source/dict/plugin/config/test_hashed_dictionary.xml -------------------------------------------------------------------------------- /source/dict/plugin/config/test_ip_trie_dictionary.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nauu/clickhousebook/HEAD/source/dict/plugin/config/test_ip_trie_dictionary.xml -------------------------------------------------------------------------------- /source/dict/plugin/config/test_mongodb_dictionary.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nauu/clickhousebook/HEAD/source/dict/plugin/config/test_mongodb_dictionary.xml -------------------------------------------------------------------------------- /source/dict/plugin/config/test_mysql_dictionary.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nauu/clickhousebook/HEAD/source/dict/plugin/config/test_mysql_dictionary.xml -------------------------------------------------------------------------------- /source/dict/plugin/config/test_range_hashed_dictionary.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nauu/clickhousebook/HEAD/source/dict/plugin/config/test_range_hashed_dictionary.xml -------------------------------------------------------------------------------- /source/dict/plugin/script/mongodb.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nauu/clickhousebook/HEAD/source/dict/plugin/script/mongodb.sql -------------------------------------------------------------------------------- /source/dict/plugin/script/mysql-dict-source.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nauu/clickhousebook/HEAD/source/dict/plugin/script/mysql-dict-source.sql -------------------------------------------------------------------------------- /source/dict/plugin/testdata/asn.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nauu/clickhousebook/HEAD/source/dict/plugin/testdata/asn.csv -------------------------------------------------------------------------------- /source/dict/plugin/testdata/organization.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nauu/clickhousebook/HEAD/source/dict/plugin/testdata/organization.csv -------------------------------------------------------------------------------- /source/dict/plugin/testdata/sales.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nauu/clickhousebook/HEAD/source/dict/plugin/testdata/sales.csv --------------------------------------------------------------------------------