clickhouse-native 0.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +7 -0
- data/ext/clickhouse_native/client.cpp +847 -0
- data/ext/clickhouse_native/extconf.rb +101 -0
- data/ext/clickhouse_native/vendor/clickhouse-cpp/.clang-format +11 -0
- data/ext/clickhouse_native/vendor/clickhouse-cpp/.git +1 -0
- data/ext/clickhouse_native/vendor/clickhouse-cpp/.gitattributes +63 -0
- data/ext/clickhouse_native/vendor/clickhouse-cpp/.github/CODEOWNERS +1 -0
- data/ext/clickhouse_native/vendor/clickhouse-cpp/.github/workflows/linux.yml +139 -0
- data/ext/clickhouse_native/vendor/clickhouse-cpp/.github/workflows/macos.yml +87 -0
- data/ext/clickhouse_native/vendor/clickhouse-cpp/.github/workflows/windows_mingw.yml +102 -0
- data/ext/clickhouse_native/vendor/clickhouse-cpp/.github/workflows/windows_msvc.yml +74 -0
- data/ext/clickhouse_native/vendor/clickhouse-cpp/.gitignore +280 -0
- data/ext/clickhouse_native/vendor/clickhouse-cpp/.travis.yml +62 -0
- data/ext/clickhouse_native/vendor/clickhouse-cpp/CMakeLists.txt +157 -0
- data/ext/clickhouse_native/vendor/clickhouse-cpp/LICENSE +206 -0
- data/ext/clickhouse_native/vendor/clickhouse-cpp/README.md +260 -0
- data/ext/clickhouse_native/vendor/clickhouse-cpp/clickhouse/CMakeLists.txt +246 -0
- data/ext/clickhouse_native/vendor/clickhouse-cpp/clickhouse/base/buffer.h +10 -0
- data/ext/clickhouse_native/vendor/clickhouse-cpp/clickhouse/base/compressed.cpp +258 -0
- data/ext/clickhouse_native/vendor/clickhouse-cpp/clickhouse/base/compressed.h +48 -0
- data/ext/clickhouse_native/vendor/clickhouse-cpp/clickhouse/base/endpoints_iterator.cpp +20 -0
- data/ext/clickhouse_native/vendor/clickhouse-cpp/clickhouse/base/endpoints_iterator.h +34 -0
- data/ext/clickhouse_native/vendor/clickhouse-cpp/clickhouse/base/input.cpp +96 -0
- data/ext/clickhouse_native/vendor/clickhouse-cpp/clickhouse/base/input.h +103 -0
- data/ext/clickhouse_native/vendor/clickhouse-cpp/clickhouse/base/open_telemetry.h +23 -0
- data/ext/clickhouse_native/vendor/clickhouse-cpp/clickhouse/base/output.cpp +119 -0
- data/ext/clickhouse_native/vendor/clickhouse-cpp/clickhouse/base/output.h +142 -0
- data/ext/clickhouse_native/vendor/clickhouse-cpp/clickhouse/base/platform.cpp +1 -0
- data/ext/clickhouse_native/vendor/clickhouse-cpp/clickhouse/base/platform.h +33 -0
- data/ext/clickhouse_native/vendor/clickhouse-cpp/clickhouse/base/projected_iterator.h +55 -0
- data/ext/clickhouse_native/vendor/clickhouse-cpp/clickhouse/base/singleton.h +11 -0
- data/ext/clickhouse_native/vendor/clickhouse-cpp/clickhouse/base/socket.cpp +489 -0
- data/ext/clickhouse_native/vendor/clickhouse-cpp/clickhouse/base/socket.h +177 -0
- data/ext/clickhouse_native/vendor/clickhouse-cpp/clickhouse/base/sslsocket.cpp +307 -0
- data/ext/clickhouse_native/vendor/clickhouse-cpp/clickhouse/base/sslsocket.h +111 -0
- data/ext/clickhouse_native/vendor/clickhouse-cpp/clickhouse/base/string_utils.h +28 -0
- data/ext/clickhouse_native/vendor/clickhouse-cpp/clickhouse/base/string_view.h +142 -0
- data/ext/clickhouse_native/vendor/clickhouse-cpp/clickhouse/base/uuid.h +10 -0
- data/ext/clickhouse_native/vendor/clickhouse-cpp/clickhouse/base/wire_format.cpp +177 -0
- data/ext/clickhouse_native/vendor/clickhouse-cpp/clickhouse/base/wire_format.h +79 -0
- data/ext/clickhouse_native/vendor/clickhouse-cpp/clickhouse/block.cpp +134 -0
- data/ext/clickhouse_native/vendor/clickhouse-cpp/clickhouse/block.h +114 -0
- data/ext/clickhouse_native/vendor/clickhouse-cpp/clickhouse/client.cpp +1269 -0
- data/ext/clickhouse_native/vendor/clickhouse-cpp/clickhouse/client.h +320 -0
- data/ext/clickhouse_native/vendor/clickhouse-cpp/clickhouse/columns/array.cpp +175 -0
- data/ext/clickhouse_native/vendor/clickhouse-cpp/clickhouse/columns/array.h +321 -0
- data/ext/clickhouse_native/vendor/clickhouse-cpp/clickhouse/columns/column.cpp +24 -0
- data/ext/clickhouse_native/vendor/clickhouse-cpp/clickhouse/columns/column.h +107 -0
- data/ext/clickhouse_native/vendor/clickhouse-cpp/clickhouse/columns/date.cpp +365 -0
- data/ext/clickhouse_native/vendor/clickhouse-cpp/clickhouse/columns/date.h +245 -0
- data/ext/clickhouse_native/vendor/clickhouse-cpp/clickhouse/columns/decimal.cpp +255 -0
- data/ext/clickhouse_native/vendor/clickhouse-cpp/clickhouse/columns/decimal.h +50 -0
- data/ext/clickhouse_native/vendor/clickhouse-cpp/clickhouse/columns/enum.cpp +123 -0
- data/ext/clickhouse_native/vendor/clickhouse-cpp/clickhouse/columns/enum.h +65 -0
- data/ext/clickhouse_native/vendor/clickhouse-cpp/clickhouse/columns/factory.cpp +285 -0
- data/ext/clickhouse_native/vendor/clickhouse-cpp/clickhouse/columns/factory.h +14 -0
- data/ext/clickhouse_native/vendor/clickhouse-cpp/clickhouse/columns/geo.cpp +108 -0
- data/ext/clickhouse_native/vendor/clickhouse-cpp/clickhouse/columns/geo.h +79 -0
- data/ext/clickhouse_native/vendor/clickhouse-cpp/clickhouse/columns/ip4.cpp +117 -0
- data/ext/clickhouse_native/vendor/clickhouse-cpp/clickhouse/columns/ip4.h +71 -0
- data/ext/clickhouse_native/vendor/clickhouse-cpp/clickhouse/columns/ip6.cpp +108 -0
- data/ext/clickhouse_native/vendor/clickhouse-cpp/clickhouse/columns/ip6.h +66 -0
- data/ext/clickhouse_native/vendor/clickhouse-cpp/clickhouse/columns/itemview.cpp +101 -0
- data/ext/clickhouse_native/vendor/clickhouse-cpp/clickhouse/columns/itemview.h +86 -0
- data/ext/clickhouse_native/vendor/clickhouse-cpp/clickhouse/columns/lowcardinality.cpp +527 -0
- data/ext/clickhouse_native/vendor/clickhouse-cpp/clickhouse/columns/lowcardinality.h +221 -0
- data/ext/clickhouse_native/vendor/clickhouse-cpp/clickhouse/columns/lowcardinalityadaptor.h +63 -0
- data/ext/clickhouse_native/vendor/clickhouse-cpp/clickhouse/columns/map.cpp +87 -0
- data/ext/clickhouse_native/vendor/clickhouse-cpp/clickhouse/columns/map.h +257 -0
- data/ext/clickhouse_native/vendor/clickhouse-cpp/clickhouse/columns/nothing.h +87 -0
- data/ext/clickhouse_native/vendor/clickhouse-cpp/clickhouse/columns/nullable.cpp +109 -0
- data/ext/clickhouse_native/vendor/clickhouse-cpp/clickhouse/columns/nullable.h +153 -0
- data/ext/clickhouse_native/vendor/clickhouse-cpp/clickhouse/columns/numeric.cpp +126 -0
- data/ext/clickhouse_native/vendor/clickhouse-cpp/clickhouse/columns/numeric.h +88 -0
- data/ext/clickhouse_native/vendor/clickhouse-cpp/clickhouse/columns/string.cpp +333 -0
- data/ext/clickhouse_native/vendor/clickhouse-cpp/clickhouse/columns/string.h +145 -0
- data/ext/clickhouse_native/vendor/clickhouse-cpp/clickhouse/columns/time.cpp +155 -0
- data/ext/clickhouse_native/vendor/clickhouse-cpp/clickhouse/columns/time.h +118 -0
- data/ext/clickhouse_native/vendor/clickhouse-cpp/clickhouse/columns/tuple.cpp +106 -0
- data/ext/clickhouse_native/vendor/clickhouse-cpp/clickhouse/columns/tuple.h +178 -0
- data/ext/clickhouse_native/vendor/clickhouse-cpp/clickhouse/columns/utils.h +41 -0
- data/ext/clickhouse_native/vendor/clickhouse-cpp/clickhouse/columns/uuid.cpp +80 -0
- data/ext/clickhouse_native/vendor/clickhouse-cpp/clickhouse/columns/uuid.h +58 -0
- data/ext/clickhouse_native/vendor/clickhouse-cpp/clickhouse/error_codes.h +595 -0
- data/ext/clickhouse_native/vendor/clickhouse-cpp/clickhouse/exceptions.h +66 -0
- data/ext/clickhouse_native/vendor/clickhouse-cpp/clickhouse/protocol.h +54 -0
- data/ext/clickhouse_native/vendor/clickhouse-cpp/clickhouse/query.cpp +25 -0
- data/ext/clickhouse_native/vendor/clickhouse-cpp/clickhouse/query.h +246 -0
- data/ext/clickhouse_native/vendor/clickhouse-cpp/clickhouse/server_exception.h +16 -0
- data/ext/clickhouse_native/vendor/clickhouse-cpp/clickhouse/types/type_parser.cpp +314 -0
- data/ext/clickhouse_native/vendor/clickhouse-cpp/clickhouse/types/type_parser.h +89 -0
- data/ext/clickhouse_native/vendor/clickhouse-cpp/clickhouse/types/types.cpp +484 -0
- data/ext/clickhouse_native/vendor/clickhouse-cpp/clickhouse/types/types.h +397 -0
- data/ext/clickhouse_native/vendor/clickhouse-cpp/clickhouse/version.h +14 -0
- data/ext/clickhouse_native/vendor/clickhouse-cpp/cmake/Findcityhash.cmake +26 -0
- data/ext/clickhouse_native/vendor/clickhouse-cpp/cmake/Findlz4.cmake +39 -0
- data/ext/clickhouse_native/vendor/clickhouse-cpp/cmake/Findzstd.cmake +39 -0
- data/ext/clickhouse_native/vendor/clickhouse-cpp/cmake/cpp17.cmake +8 -0
- data/ext/clickhouse_native/vendor/clickhouse-cpp/cmake/openssl.cmake +8 -0
- data/ext/clickhouse_native/vendor/clickhouse-cpp/cmake/subdirs.cmake +5 -0
- data/ext/clickhouse_native/vendor/clickhouse-cpp/cmake/version.cmake +87 -0
- data/ext/clickhouse_native/vendor/clickhouse-cpp/contrib/absl/absl/CMakeLists.txt +9 -0
- data/ext/clickhouse_native/vendor/clickhouse-cpp/contrib/absl/absl/base/attributes.h +682 -0
- data/ext/clickhouse_native/vendor/clickhouse-cpp/contrib/absl/absl/base/config.h +714 -0
- data/ext/clickhouse_native/vendor/clickhouse-cpp/contrib/absl/absl/base/internal/bits.h +219 -0
- data/ext/clickhouse_native/vendor/clickhouse-cpp/contrib/absl/absl/base/macros.h +147 -0
- data/ext/clickhouse_native/vendor/clickhouse-cpp/contrib/absl/absl/base/optimization.h +241 -0
- data/ext/clickhouse_native/vendor/clickhouse-cpp/contrib/absl/absl/base/options.h +238 -0
- data/ext/clickhouse_native/vendor/clickhouse-cpp/contrib/absl/absl/base/policy_checks.h +111 -0
- data/ext/clickhouse_native/vendor/clickhouse-cpp/contrib/absl/absl/base/port.h +26 -0
- data/ext/clickhouse_native/vendor/clickhouse-cpp/contrib/absl/absl/numeric/int128.cc +390 -0
- data/ext/clickhouse_native/vendor/clickhouse-cpp/contrib/absl/absl/numeric/int128.h +1092 -0
- data/ext/clickhouse_native/vendor/clickhouse-cpp/contrib/absl/absl/numeric/int128_have_intrinsic.inc +302 -0
- data/ext/clickhouse_native/vendor/clickhouse-cpp/contrib/absl/absl/numeric/int128_no_intrinsic.inc +308 -0
- data/ext/clickhouse_native/vendor/clickhouse-cpp/contrib/cityhash/cityhash/BUCK +13 -0
- data/ext/clickhouse_native/vendor/clickhouse-cpp/contrib/cityhash/cityhash/CMakeLists.txt +7 -0
- data/ext/clickhouse_native/vendor/clickhouse-cpp/contrib/cityhash/cityhash/COPYING +19 -0
- data/ext/clickhouse_native/vendor/clickhouse-cpp/contrib/cityhash/cityhash/city.cc +469 -0
- data/ext/clickhouse_native/vendor/clickhouse-cpp/contrib/cityhash/cityhash/city.h +90 -0
- data/ext/clickhouse_native/vendor/clickhouse-cpp/contrib/cityhash/cityhash/citycrc.h +43 -0
- data/ext/clickhouse_native/vendor/clickhouse-cpp/contrib/cityhash/cityhash/config.h +118 -0
- data/ext/clickhouse_native/vendor/clickhouse-cpp/contrib/gtest/BUCK +14 -0
- data/ext/clickhouse_native/vendor/clickhouse-cpp/contrib/gtest/CMakeLists.txt +4 -0
- data/ext/clickhouse_native/vendor/clickhouse-cpp/contrib/gtest/LICENSE +28 -0
- data/ext/clickhouse_native/vendor/clickhouse-cpp/contrib/gtest/README.md +1 -0
- data/ext/clickhouse_native/vendor/clickhouse-cpp/contrib/gtest/include/gtest/gtest-death-test.h +346 -0
- data/ext/clickhouse_native/vendor/clickhouse-cpp/contrib/gtest/include/gtest/gtest-matchers.h +930 -0
- data/ext/clickhouse_native/vendor/clickhouse-cpp/contrib/gtest/include/gtest/gtest-message.h +219 -0
- data/ext/clickhouse_native/vendor/clickhouse-cpp/contrib/gtest/include/gtest/gtest-param-test.h +507 -0
- data/ext/clickhouse_native/vendor/clickhouse-cpp/contrib/gtest/include/gtest/gtest-printers.h +1029 -0
- data/ext/clickhouse_native/vendor/clickhouse-cpp/contrib/gtest/include/gtest/gtest-spi.h +238 -0
- data/ext/clickhouse_native/vendor/clickhouse-cpp/contrib/gtest/include/gtest/gtest-test-part.h +184 -0
- data/ext/clickhouse_native/vendor/clickhouse-cpp/contrib/gtest/include/gtest/gtest-typed-test.h +329 -0
- data/ext/clickhouse_native/vendor/clickhouse-cpp/contrib/gtest/include/gtest/gtest.h +2495 -0
- data/ext/clickhouse_native/vendor/clickhouse-cpp/contrib/gtest/include/gtest/gtest_pred_impl.h +359 -0
- data/ext/clickhouse_native/vendor/clickhouse-cpp/contrib/gtest/include/gtest/gtest_prod.h +61 -0
- data/ext/clickhouse_native/vendor/clickhouse-cpp/contrib/gtest/include/gtest/internal/custom/README.md +56 -0
- data/ext/clickhouse_native/vendor/clickhouse-cpp/contrib/gtest/include/gtest/internal/custom/gtest-port.h +37 -0
- data/ext/clickhouse_native/vendor/clickhouse-cpp/contrib/gtest/include/gtest/internal/custom/gtest-printers.h +42 -0
- data/ext/clickhouse_native/vendor/clickhouse-cpp/contrib/gtest/include/gtest/internal/custom/gtest.h +37 -0
- data/ext/clickhouse_native/vendor/clickhouse-cpp/contrib/gtest/include/gtest/internal/gtest-death-test-internal.h +304 -0
- data/ext/clickhouse_native/vendor/clickhouse-cpp/contrib/gtest/include/gtest/internal/gtest-filepath.h +211 -0
- data/ext/clickhouse_native/vendor/clickhouse-cpp/contrib/gtest/include/gtest/internal/gtest-internal.h +1560 -0
- data/ext/clickhouse_native/vendor/clickhouse-cpp/contrib/gtest/include/gtest/internal/gtest-param-util.h +947 -0
- data/ext/clickhouse_native/vendor/clickhouse-cpp/contrib/gtest/include/gtest/internal/gtest-port-arch.h +114 -0
- data/ext/clickhouse_native/vendor/clickhouse-cpp/contrib/gtest/include/gtest/internal/gtest-port.h +2389 -0
- data/ext/clickhouse_native/vendor/clickhouse-cpp/contrib/gtest/include/gtest/internal/gtest-string.h +175 -0
- data/ext/clickhouse_native/vendor/clickhouse-cpp/contrib/gtest/include/gtest/internal/gtest-type-util.h +183 -0
- data/ext/clickhouse_native/vendor/clickhouse-cpp/contrib/gtest/src/gtest-all.cc +48 -0
- data/ext/clickhouse_native/vendor/clickhouse-cpp/contrib/gtest/src/gtest-death-test.cc +1644 -0
- data/ext/clickhouse_native/vendor/clickhouse-cpp/contrib/gtest/src/gtest-filepath.cc +369 -0
- data/ext/clickhouse_native/vendor/clickhouse-cpp/contrib/gtest/src/gtest-internal-inl.h +1221 -0
- data/ext/clickhouse_native/vendor/clickhouse-cpp/contrib/gtest/src/gtest-matchers.cc +97 -0
- data/ext/clickhouse_native/vendor/clickhouse-cpp/contrib/gtest/src/gtest-port.cc +1433 -0
- data/ext/clickhouse_native/vendor/clickhouse-cpp/contrib/gtest/src/gtest-printers.cc +533 -0
- data/ext/clickhouse_native/vendor/clickhouse-cpp/contrib/gtest/src/gtest-test-part.cc +108 -0
- data/ext/clickhouse_native/vendor/clickhouse-cpp/contrib/gtest/src/gtest-typed-test.cc +107 -0
- data/ext/clickhouse_native/vendor/clickhouse-cpp/contrib/gtest/src/gtest.cc +6746 -0
- data/ext/clickhouse_native/vendor/clickhouse-cpp/contrib/gtest/src/gtest_main.cc +54 -0
- data/ext/clickhouse_native/vendor/clickhouse-cpp/contrib/lz4/lz4/BUCK +13 -0
- data/ext/clickhouse_native/vendor/clickhouse-cpp/contrib/lz4/lz4/CMakeLists.txt +8 -0
- data/ext/clickhouse_native/vendor/clickhouse-cpp/contrib/lz4/lz4/LICENSE +24 -0
- data/ext/clickhouse_native/vendor/clickhouse-cpp/contrib/lz4/lz4/lz4.c +2402 -0
- data/ext/clickhouse_native/vendor/clickhouse-cpp/contrib/lz4/lz4/lz4.h +764 -0
- data/ext/clickhouse_native/vendor/clickhouse-cpp/contrib/lz4/lz4/lz4hc.c +1554 -0
- data/ext/clickhouse_native/vendor/clickhouse-cpp/contrib/lz4/lz4/lz4hc.h +438 -0
- data/ext/clickhouse_native/vendor/clickhouse-cpp/contrib/zstd/zstd/BUCK +232 -0
- data/ext/clickhouse_native/vendor/clickhouse-cpp/contrib/zstd/zstd/CMakeLists.txt +115 -0
- data/ext/clickhouse_native/vendor/clickhouse-cpp/contrib/zstd/zstd/LICENSE +30 -0
- data/ext/clickhouse_native/vendor/clickhouse-cpp/contrib/zstd/zstd/common/allocations.h +55 -0
- data/ext/clickhouse_native/vendor/clickhouse-cpp/contrib/zstd/zstd/common/bits.h +200 -0
- data/ext/clickhouse_native/vendor/clickhouse-cpp/contrib/zstd/zstd/common/bitstream.h +437 -0
- data/ext/clickhouse_native/vendor/clickhouse-cpp/contrib/zstd/zstd/common/compiler.h +358 -0
- data/ext/clickhouse_native/vendor/clickhouse-cpp/contrib/zstd/zstd/common/cpu.h +213 -0
- data/ext/clickhouse_native/vendor/clickhouse-cpp/contrib/zstd/zstd/common/debug.c +24 -0
- data/ext/clickhouse_native/vendor/clickhouse-cpp/contrib/zstd/zstd/common/debug.h +107 -0
- data/ext/clickhouse_native/vendor/clickhouse-cpp/contrib/zstd/zstd/common/entropy_common.c +340 -0
- data/ext/clickhouse_native/vendor/clickhouse-cpp/contrib/zstd/zstd/common/error_private.c +63 -0
- data/ext/clickhouse_native/vendor/clickhouse-cpp/contrib/zstd/zstd/common/error_private.h +159 -0
- data/ext/clickhouse_native/vendor/clickhouse-cpp/contrib/zstd/zstd/common/fse.h +639 -0
- data/ext/clickhouse_native/vendor/clickhouse-cpp/contrib/zstd/zstd/common/fse_decompress.c +311 -0
- data/ext/clickhouse_native/vendor/clickhouse-cpp/contrib/zstd/zstd/common/huf.h +273 -0
- data/ext/clickhouse_native/vendor/clickhouse-cpp/contrib/zstd/zstd/common/mem.h +435 -0
- data/ext/clickhouse_native/vendor/clickhouse-cpp/contrib/zstd/zstd/common/pool.c +371 -0
- data/ext/clickhouse_native/vendor/clickhouse-cpp/contrib/zstd/zstd/common/pool.h +90 -0
- data/ext/clickhouse_native/vendor/clickhouse-cpp/contrib/zstd/zstd/common/portability_macros.h +156 -0
- data/ext/clickhouse_native/vendor/clickhouse-cpp/contrib/zstd/zstd/common/threading.c +176 -0
- data/ext/clickhouse_native/vendor/clickhouse-cpp/contrib/zstd/zstd/common/threading.h +150 -0
- data/ext/clickhouse_native/vendor/clickhouse-cpp/contrib/zstd/zstd/common/xxhash.c +24 -0
- data/ext/clickhouse_native/vendor/clickhouse-cpp/contrib/zstd/zstd/common/xxhash.h +5686 -0
- data/ext/clickhouse_native/vendor/clickhouse-cpp/contrib/zstd/zstd/common/zstd_common.c +48 -0
- data/ext/clickhouse_native/vendor/clickhouse-cpp/contrib/zstd/zstd/common/zstd_deps.h +111 -0
- data/ext/clickhouse_native/vendor/clickhouse-cpp/contrib/zstd/zstd/common/zstd_internal.h +392 -0
- data/ext/clickhouse_native/vendor/clickhouse-cpp/contrib/zstd/zstd/common/zstd_trace.h +163 -0
- data/ext/clickhouse_native/vendor/clickhouse-cpp/contrib/zstd/zstd/compress/clevels.h +134 -0
- data/ext/clickhouse_native/vendor/clickhouse-cpp/contrib/zstd/zstd/compress/fse_compress.c +624 -0
- data/ext/clickhouse_native/vendor/clickhouse-cpp/contrib/zstd/zstd/compress/hist.c +181 -0
- data/ext/clickhouse_native/vendor/clickhouse-cpp/contrib/zstd/zstd/compress/hist.h +75 -0
- data/ext/clickhouse_native/vendor/clickhouse-cpp/contrib/zstd/zstd/compress/huf_compress.c +1435 -0
- data/ext/clickhouse_native/vendor/clickhouse-cpp/contrib/zstd/zstd/compress/zstd_compress.c +7032 -0
- data/ext/clickhouse_native/vendor/clickhouse-cpp/contrib/zstd/zstd/compress/zstd_compress_internal.h +1532 -0
- data/ext/clickhouse_native/vendor/clickhouse-cpp/contrib/zstd/zstd/compress/zstd_compress_literals.c +235 -0
- data/ext/clickhouse_native/vendor/clickhouse-cpp/contrib/zstd/zstd/compress/zstd_compress_literals.h +39 -0
- data/ext/clickhouse_native/vendor/clickhouse-cpp/contrib/zstd/zstd/compress/zstd_compress_sequences.c +442 -0
- data/ext/clickhouse_native/vendor/clickhouse-cpp/contrib/zstd/zstd/compress/zstd_compress_sequences.h +54 -0
- data/ext/clickhouse_native/vendor/clickhouse-cpp/contrib/zstd/zstd/compress/zstd_compress_superblock.c +577 -0
- data/ext/clickhouse_native/vendor/clickhouse-cpp/contrib/zstd/zstd/compress/zstd_compress_superblock.h +32 -0
- data/ext/clickhouse_native/vendor/clickhouse-cpp/contrib/zstd/zstd/compress/zstd_cwksp.h +742 -0
- data/ext/clickhouse_native/vendor/clickhouse-cpp/contrib/zstd/zstd/compress/zstd_double_fast.c +758 -0
- data/ext/clickhouse_native/vendor/clickhouse-cpp/contrib/zstd/zstd/compress/zstd_double_fast.h +39 -0
- data/ext/clickhouse_native/vendor/clickhouse-cpp/contrib/zstd/zstd/compress/zstd_fast.c +960 -0
- data/ext/clickhouse_native/vendor/clickhouse-cpp/contrib/zstd/zstd/compress/zstd_fast.h +38 -0
- data/ext/clickhouse_native/vendor/clickhouse-cpp/contrib/zstd/zstd/compress/zstd_lazy.c +2157 -0
- data/ext/clickhouse_native/vendor/clickhouse-cpp/contrib/zstd/zstd/compress/zstd_lazy.h +127 -0
- data/ext/clickhouse_native/vendor/clickhouse-cpp/contrib/zstd/zstd/compress/zstd_ldm.c +724 -0
- data/ext/clickhouse_native/vendor/clickhouse-cpp/contrib/zstd/zstd/compress/zstd_ldm.h +117 -0
- data/ext/clickhouse_native/vendor/clickhouse-cpp/contrib/zstd/zstd/compress/zstd_ldm_geartab.h +106 -0
- data/ext/clickhouse_native/vendor/clickhouse-cpp/contrib/zstd/zstd/compress/zstd_opt.c +1472 -0
- data/ext/clickhouse_native/vendor/clickhouse-cpp/contrib/zstd/zstd/compress/zstd_opt.h +56 -0
- data/ext/clickhouse_native/vendor/clickhouse-cpp/contrib/zstd/zstd/compress/zstdmt_compress.c +1867 -0
- data/ext/clickhouse_native/vendor/clickhouse-cpp/contrib/zstd/zstd/compress/zstdmt_compress.h +113 -0
- data/ext/clickhouse_native/vendor/clickhouse-cpp/contrib/zstd/zstd/decompress/huf_decompress.c +1882 -0
- data/ext/clickhouse_native/vendor/clickhouse-cpp/contrib/zstd/zstd/decompress/huf_decompress_amd64.S +576 -0
- data/ext/clickhouse_native/vendor/clickhouse-cpp/contrib/zstd/zstd/decompress/zstd_ddict.c +244 -0
- data/ext/clickhouse_native/vendor/clickhouse-cpp/contrib/zstd/zstd/decompress/zstd_ddict.h +44 -0
- data/ext/clickhouse_native/vendor/clickhouse-cpp/contrib/zstd/zstd/decompress/zstd_decompress.c +2355 -0
- data/ext/clickhouse_native/vendor/clickhouse-cpp/contrib/zstd/zstd/decompress/zstd_decompress_block.c +2192 -0
- data/ext/clickhouse_native/vendor/clickhouse-cpp/contrib/zstd/zstd/decompress/zstd_decompress_block.h +73 -0
- data/ext/clickhouse_native/vendor/clickhouse-cpp/contrib/zstd/zstd/decompress/zstd_decompress_internal.h +238 -0
- data/ext/clickhouse_native/vendor/clickhouse-cpp/contrib/zstd/zstd/dictBuilder/cover.c +1257 -0
- data/ext/clickhouse_native/vendor/clickhouse-cpp/contrib/zstd/zstd/dictBuilder/cover.h +158 -0
- data/ext/clickhouse_native/vendor/clickhouse-cpp/contrib/zstd/zstd/dictBuilder/divsufsort.c +1913 -0
- data/ext/clickhouse_native/vendor/clickhouse-cpp/contrib/zstd/zstd/dictBuilder/divsufsort.h +67 -0
- data/ext/clickhouse_native/vendor/clickhouse-cpp/contrib/zstd/zstd/dictBuilder/fastcover.c +766 -0
- data/ext/clickhouse_native/vendor/clickhouse-cpp/contrib/zstd/zstd/dictBuilder/zdict.c +1127 -0
- data/ext/clickhouse_native/vendor/clickhouse-cpp/contrib/zstd/zstd/legacy/zstd_legacy.h +422 -0
- data/ext/clickhouse_native/vendor/clickhouse-cpp/contrib/zstd/zstd/legacy/zstd_v01.c +2125 -0
- data/ext/clickhouse_native/vendor/clickhouse-cpp/contrib/zstd/zstd/legacy/zstd_v01.h +94 -0
- data/ext/clickhouse_native/vendor/clickhouse-cpp/contrib/zstd/zstd/legacy/zstd_v02.c +3477 -0
- data/ext/clickhouse_native/vendor/clickhouse-cpp/contrib/zstd/zstd/legacy/zstd_v02.h +93 -0
- data/ext/clickhouse_native/vendor/clickhouse-cpp/contrib/zstd/zstd/legacy/zstd_v03.c +3117 -0
- data/ext/clickhouse_native/vendor/clickhouse-cpp/contrib/zstd/zstd/legacy/zstd_v03.h +93 -0
- data/ext/clickhouse_native/vendor/clickhouse-cpp/contrib/zstd/zstd/legacy/zstd_v04.c +3605 -0
- data/ext/clickhouse_native/vendor/clickhouse-cpp/contrib/zstd/zstd/legacy/zstd_v04.h +142 -0
- data/ext/clickhouse_native/vendor/clickhouse-cpp/contrib/zstd/zstd/legacy/zstd_v05.c +4004 -0
- data/ext/clickhouse_native/vendor/clickhouse-cpp/contrib/zstd/zstd/legacy/zstd_v05.h +162 -0
- data/ext/clickhouse_native/vendor/clickhouse-cpp/contrib/zstd/zstd/legacy/zstd_v06.c +4113 -0
- data/ext/clickhouse_native/vendor/clickhouse-cpp/contrib/zstd/zstd/legacy/zstd_v06.h +172 -0
- data/ext/clickhouse_native/vendor/clickhouse-cpp/contrib/zstd/zstd/legacy/zstd_v07.c +4498 -0
- data/ext/clickhouse_native/vendor/clickhouse-cpp/contrib/zstd/zstd/legacy/zstd_v07.h +187 -0
- data/ext/clickhouse_native/vendor/clickhouse-cpp/contrib/zstd/zstd/zdict.h +474 -0
- data/ext/clickhouse_native/vendor/clickhouse-cpp/contrib/zstd/zstd/zstd.h +3020 -0
- data/ext/clickhouse_native/vendor/clickhouse-cpp/contrib/zstd/zstd/zstd_errors.h +114 -0
- data/lib/clickhouse_native/clickhouse_native.bundle +0 -0
- data/lib/clickhouse_native/client.rb +50 -0
- data/lib/clickhouse_native/errors.rb +23 -0
- data/lib/clickhouse_native/pool.rb +49 -0
- data/lib/clickhouse_native/version.rb +3 -0
- data/lib/clickhouse_native.rb +8 -0
- metadata +369 -0
|
@@ -0,0 +1,114 @@
|
|
|
1
|
+
/*
|
|
2
|
+
* Copyright (c) Meta Platforms, Inc. and affiliates.
|
|
3
|
+
* All rights reserved.
|
|
4
|
+
*
|
|
5
|
+
* This source code is licensed under both the BSD-style license (found in the
|
|
6
|
+
* LICENSE file in the root directory of this source tree) and the GPLv2 (found
|
|
7
|
+
* in the COPYING file in the root directory of this source tree).
|
|
8
|
+
* You may select, at your option, one of the above-listed licenses.
|
|
9
|
+
*/
|
|
10
|
+
|
|
11
|
+
#ifndef ZSTD_ERRORS_H_398273423
|
|
12
|
+
#define ZSTD_ERRORS_H_398273423
|
|
13
|
+
|
|
14
|
+
#if defined (__cplusplus)
|
|
15
|
+
extern "C" {
|
|
16
|
+
#endif
|
|
17
|
+
|
|
18
|
+
/*===== dependency =====*/
|
|
19
|
+
#include <stddef.h> /* size_t */
|
|
20
|
+
|
|
21
|
+
|
|
22
|
+
/* ===== ZSTDERRORLIB_API : control library symbols visibility ===== */
|
|
23
|
+
#ifndef ZSTDERRORLIB_VISIBLE
|
|
24
|
+
/* Backwards compatibility with old macro name */
|
|
25
|
+
# ifdef ZSTDERRORLIB_VISIBILITY
|
|
26
|
+
# define ZSTDERRORLIB_VISIBLE ZSTDERRORLIB_VISIBILITY
|
|
27
|
+
# elif defined(__GNUC__) && (__GNUC__ >= 4) && !defined(__MINGW32__)
|
|
28
|
+
# define ZSTDERRORLIB_VISIBLE __attribute__ ((visibility ("default")))
|
|
29
|
+
# else
|
|
30
|
+
# define ZSTDERRORLIB_VISIBLE
|
|
31
|
+
# endif
|
|
32
|
+
#endif
|
|
33
|
+
|
|
34
|
+
#ifndef ZSTDERRORLIB_HIDDEN
|
|
35
|
+
# if defined(__GNUC__) && (__GNUC__ >= 4) && !defined(__MINGW32__)
|
|
36
|
+
# define ZSTDERRORLIB_HIDDEN __attribute__ ((visibility ("hidden")))
|
|
37
|
+
# else
|
|
38
|
+
# define ZSTDERRORLIB_HIDDEN
|
|
39
|
+
# endif
|
|
40
|
+
#endif
|
|
41
|
+
|
|
42
|
+
#if defined(ZSTD_DLL_EXPORT) && (ZSTD_DLL_EXPORT==1)
|
|
43
|
+
# define ZSTDERRORLIB_API __declspec(dllexport) ZSTDERRORLIB_VISIBLE
|
|
44
|
+
#elif defined(ZSTD_DLL_IMPORT) && (ZSTD_DLL_IMPORT==1)
|
|
45
|
+
# define ZSTDERRORLIB_API __declspec(dllimport) ZSTDERRORLIB_VISIBLE /* It isn't required but allows to generate better code, saving a function pointer load from the IAT and an indirect jump.*/
|
|
46
|
+
#else
|
|
47
|
+
# define ZSTDERRORLIB_API ZSTDERRORLIB_VISIBLE
|
|
48
|
+
#endif
|
|
49
|
+
|
|
50
|
+
/*-*********************************************
|
|
51
|
+
* Error codes list
|
|
52
|
+
*-*********************************************
|
|
53
|
+
* Error codes _values_ are pinned down since v1.3.1 only.
|
|
54
|
+
* Therefore, don't rely on values if you may link to any version < v1.3.1.
|
|
55
|
+
*
|
|
56
|
+
* Only values < 100 are considered stable.
|
|
57
|
+
*
|
|
58
|
+
* note 1 : this API shall be used with static linking only.
|
|
59
|
+
* dynamic linking is not yet officially supported.
|
|
60
|
+
* note 2 : Prefer relying on the enum than on its value whenever possible
|
|
61
|
+
* This is the only supported way to use the error list < v1.3.1
|
|
62
|
+
* note 3 : ZSTD_isError() is always correct, whatever the library version.
|
|
63
|
+
**********************************************/
|
|
64
|
+
typedef enum {
|
|
65
|
+
ZSTD_error_no_error = 0,
|
|
66
|
+
ZSTD_error_GENERIC = 1,
|
|
67
|
+
ZSTD_error_prefix_unknown = 10,
|
|
68
|
+
ZSTD_error_version_unsupported = 12,
|
|
69
|
+
ZSTD_error_frameParameter_unsupported = 14,
|
|
70
|
+
ZSTD_error_frameParameter_windowTooLarge = 16,
|
|
71
|
+
ZSTD_error_corruption_detected = 20,
|
|
72
|
+
ZSTD_error_checksum_wrong = 22,
|
|
73
|
+
ZSTD_error_literals_headerWrong = 24,
|
|
74
|
+
ZSTD_error_dictionary_corrupted = 30,
|
|
75
|
+
ZSTD_error_dictionary_wrong = 32,
|
|
76
|
+
ZSTD_error_dictionaryCreation_failed = 34,
|
|
77
|
+
ZSTD_error_parameter_unsupported = 40,
|
|
78
|
+
ZSTD_error_parameter_combination_unsupported = 41,
|
|
79
|
+
ZSTD_error_parameter_outOfBound = 42,
|
|
80
|
+
ZSTD_error_tableLog_tooLarge = 44,
|
|
81
|
+
ZSTD_error_maxSymbolValue_tooLarge = 46,
|
|
82
|
+
ZSTD_error_maxSymbolValue_tooSmall = 48,
|
|
83
|
+
ZSTD_error_stabilityCondition_notRespected = 50,
|
|
84
|
+
ZSTD_error_stage_wrong = 60,
|
|
85
|
+
ZSTD_error_init_missing = 62,
|
|
86
|
+
ZSTD_error_memory_allocation = 64,
|
|
87
|
+
ZSTD_error_workSpace_tooSmall= 66,
|
|
88
|
+
ZSTD_error_dstSize_tooSmall = 70,
|
|
89
|
+
ZSTD_error_srcSize_wrong = 72,
|
|
90
|
+
ZSTD_error_dstBuffer_null = 74,
|
|
91
|
+
ZSTD_error_noForwardProgress_destFull = 80,
|
|
92
|
+
ZSTD_error_noForwardProgress_inputEmpty = 82,
|
|
93
|
+
/* following error codes are __NOT STABLE__, they can be removed or changed in future versions */
|
|
94
|
+
ZSTD_error_frameIndex_tooLarge = 100,
|
|
95
|
+
ZSTD_error_seekableIO = 102,
|
|
96
|
+
ZSTD_error_dstBuffer_wrong = 104,
|
|
97
|
+
ZSTD_error_srcBuffer_wrong = 105,
|
|
98
|
+
ZSTD_error_sequenceProducer_failed = 106,
|
|
99
|
+
ZSTD_error_externalSequences_invalid = 107,
|
|
100
|
+
ZSTD_error_maxCode = 120 /* never EVER use this value directly, it can change in future versions! Use ZSTD_isError() instead */
|
|
101
|
+
} ZSTD_ErrorCode;
|
|
102
|
+
|
|
103
|
+
/*! ZSTD_getErrorCode() :
|
|
104
|
+
convert a `size_t` function result into a `ZSTD_ErrorCode` enum type,
|
|
105
|
+
which can be used to compare with enum list published above */
|
|
106
|
+
ZSTDERRORLIB_API ZSTD_ErrorCode ZSTD_getErrorCode(size_t functionResult);
|
|
107
|
+
ZSTDERRORLIB_API const char* ZSTD_getErrorString(ZSTD_ErrorCode code); /**< Same as ZSTD_getErrorName, but using a `ZSTD_ErrorCode` enum argument */
|
|
108
|
+
|
|
109
|
+
|
|
110
|
+
#if defined (__cplusplus)
|
|
111
|
+
}
|
|
112
|
+
#endif
|
|
113
|
+
|
|
114
|
+
#endif /* ZSTD_ERRORS_H_398273423 */
|
|
Binary file
|
|
@@ -0,0 +1,50 @@
|
|
|
1
|
+
module ClickhouseNative
|
|
2
|
+
class Client
|
|
3
|
+
attr_reader :host, :port, :database
|
|
4
|
+
|
|
5
|
+
def describe_table(table, db_name: nil)
|
|
6
|
+
fq = db_name ? "#{db_name}.#{table}" : table
|
|
7
|
+
query("DESCRIBE TABLE #{fq}")
|
|
8
|
+
end
|
|
9
|
+
|
|
10
|
+
# insert(table, rows, columns: nil, db_name: nil, types: nil)
|
|
11
|
+
#
|
|
12
|
+
# rows may be Array<Hash{Symbol|String => Object}> or Array<Array>.
|
|
13
|
+
# columns defaults to the first hash's keys (for Array<Hash>) or all table
|
|
14
|
+
# columns in DDL order (for Array<Array>).
|
|
15
|
+
# types may be supplied to skip the DESCRIBE lookup.
|
|
16
|
+
def insert(table, rows, columns: nil, db_name: nil, types: nil)
|
|
17
|
+
return 0 if rows.empty?
|
|
18
|
+
fq = db_name ? "#{db_name}.#{table}" : table
|
|
19
|
+
|
|
20
|
+
if types && columns
|
|
21
|
+
raise ArgumentError, "types and columns must have the same length" if columns.size != types.size
|
|
22
|
+
col_pairs = columns.zip(types).map { |n, t| [n.to_s, t] }
|
|
23
|
+
else
|
|
24
|
+
schema = describe_table(table, db_name: db_name)
|
|
25
|
+
type_by_name = schema.to_h { |c| [c[:name], c[:type]] }
|
|
26
|
+
columns ||= rows.first.is_a?(Hash) ? rows.first.keys.map(&:to_s) : schema.map { |c| c[:name] }
|
|
27
|
+
col_pairs = columns.map do |name|
|
|
28
|
+
name_s = name.to_s
|
|
29
|
+
t = type_by_name[name_s] or raise ArgumentError, "unknown column #{name_s.inspect} in #{fq}"
|
|
30
|
+
[name_s, t]
|
|
31
|
+
end
|
|
32
|
+
end
|
|
33
|
+
|
|
34
|
+
row_arrays =
|
|
35
|
+
if rows.first.is_a?(Hash)
|
|
36
|
+
col_pairs.map { |n, _| [n.to_sym, n] }.then do |lookup|
|
|
37
|
+
rows.map { |h| lookup.map { |sym, str| h.fetch(sym) { h[str] } } }
|
|
38
|
+
end
|
|
39
|
+
else
|
|
40
|
+
rows
|
|
41
|
+
end
|
|
42
|
+
|
|
43
|
+
insert_block(fq, col_pairs, row_arrays)
|
|
44
|
+
end
|
|
45
|
+
|
|
46
|
+
def inspect
|
|
47
|
+
"#<#{self.class} #{host}:#{port}/#{database}>"
|
|
48
|
+
end
|
|
49
|
+
end
|
|
50
|
+
end
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
module ClickhouseNative
|
|
2
|
+
class Error < StandardError; end
|
|
3
|
+
|
|
4
|
+
class ConnectionError < Error; end
|
|
5
|
+
class TimeoutError < ConnectionError; end
|
|
6
|
+
|
|
7
|
+
class ProtocolError < Error; end
|
|
8
|
+
|
|
9
|
+
class ServerError < Error
|
|
10
|
+
attr_reader :server_code, :server_name, :server_stacktrace
|
|
11
|
+
|
|
12
|
+
def initialize(message, code: nil, name: nil, stacktrace: nil)
|
|
13
|
+
super(message)
|
|
14
|
+
@server_code = code
|
|
15
|
+
@server_name = name
|
|
16
|
+
@server_stacktrace = stacktrace
|
|
17
|
+
end
|
|
18
|
+
end
|
|
19
|
+
|
|
20
|
+
class EncoderError < Error; end
|
|
21
|
+
class DecoderError < Error; end
|
|
22
|
+
class UnsupportedTypeError < DecoderError; end
|
|
23
|
+
end
|
|
@@ -0,0 +1,49 @@
|
|
|
1
|
+
require "connection_pool"
|
|
2
|
+
|
|
3
|
+
module ClickhouseNative
|
|
4
|
+
class Pool
|
|
5
|
+
def initialize(host:, port:, database: "default", user: "default", password: "",
|
|
6
|
+
compression: :none, pool_size: 5, pool_timeout: 5)
|
|
7
|
+
client_kwargs = {host:, port:, database:, user:, password:, compression:}
|
|
8
|
+
@pool = ConnectionPool.new(size: pool_size, timeout: pool_timeout) do
|
|
9
|
+
Client.new(**client_kwargs)
|
|
10
|
+
end
|
|
11
|
+
end
|
|
12
|
+
|
|
13
|
+
def with(&block)
|
|
14
|
+
@pool.with(&block)
|
|
15
|
+
end
|
|
16
|
+
|
|
17
|
+
def execute(sql)
|
|
18
|
+
@pool.with { |c| c.execute(sql) }
|
|
19
|
+
end
|
|
20
|
+
|
|
21
|
+
def query(sql)
|
|
22
|
+
@pool.with { |c| c.query(sql) }
|
|
23
|
+
end
|
|
24
|
+
|
|
25
|
+
def query_each(sql, &block)
|
|
26
|
+
@pool.with { |c| c.query_each(sql, &block) }
|
|
27
|
+
end
|
|
28
|
+
|
|
29
|
+
def query_value(sql)
|
|
30
|
+
@pool.with { |c| c.query_value(sql) }
|
|
31
|
+
end
|
|
32
|
+
|
|
33
|
+
def insert(table, rows, **opts)
|
|
34
|
+
@pool.with { |c| c.insert(table, rows, **opts) }
|
|
35
|
+
end
|
|
36
|
+
|
|
37
|
+
def ping
|
|
38
|
+
@pool.with(&:ping)
|
|
39
|
+
end
|
|
40
|
+
|
|
41
|
+
def server_version
|
|
42
|
+
@pool.with(&:server_version)
|
|
43
|
+
end
|
|
44
|
+
|
|
45
|
+
def describe_table(table, db_name: nil)
|
|
46
|
+
@pool.with { |c| c.describe_table(table, db_name:) }
|
|
47
|
+
end
|
|
48
|
+
end
|
|
49
|
+
end
|
metadata
ADDED
|
@@ -0,0 +1,369 @@
|
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
|
2
|
+
name: clickhouse-native
|
|
3
|
+
version: !ruby/object:Gem::Version
|
|
4
|
+
version: 0.0.1
|
|
5
|
+
platform: ruby
|
|
6
|
+
authors:
|
|
7
|
+
- Yuri Smirnov
|
|
8
|
+
bindir: bin
|
|
9
|
+
cert_chain: []
|
|
10
|
+
date: 1980-01-02 00:00:00.000000000 Z
|
|
11
|
+
dependencies:
|
|
12
|
+
- !ruby/object:Gem::Dependency
|
|
13
|
+
name: connection_pool
|
|
14
|
+
requirement: !ruby/object:Gem::Requirement
|
|
15
|
+
requirements:
|
|
16
|
+
- - "~>"
|
|
17
|
+
- !ruby/object:Gem::Version
|
|
18
|
+
version: '2.4'
|
|
19
|
+
type: :runtime
|
|
20
|
+
prerelease: false
|
|
21
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
22
|
+
requirements:
|
|
23
|
+
- - "~>"
|
|
24
|
+
- !ruby/object:Gem::Version
|
|
25
|
+
version: '2.4'
|
|
26
|
+
- !ruby/object:Gem::Dependency
|
|
27
|
+
name: rake
|
|
28
|
+
requirement: !ruby/object:Gem::Requirement
|
|
29
|
+
requirements:
|
|
30
|
+
- - "~>"
|
|
31
|
+
- !ruby/object:Gem::Version
|
|
32
|
+
version: '13.2'
|
|
33
|
+
type: :development
|
|
34
|
+
prerelease: false
|
|
35
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
36
|
+
requirements:
|
|
37
|
+
- - "~>"
|
|
38
|
+
- !ruby/object:Gem::Version
|
|
39
|
+
version: '13.2'
|
|
40
|
+
- !ruby/object:Gem::Dependency
|
|
41
|
+
name: rake-compiler
|
|
42
|
+
requirement: !ruby/object:Gem::Requirement
|
|
43
|
+
requirements:
|
|
44
|
+
- - "~>"
|
|
45
|
+
- !ruby/object:Gem::Version
|
|
46
|
+
version: '1.2'
|
|
47
|
+
type: :development
|
|
48
|
+
prerelease: false
|
|
49
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
50
|
+
requirements:
|
|
51
|
+
- - "~>"
|
|
52
|
+
- !ruby/object:Gem::Version
|
|
53
|
+
version: '1.2'
|
|
54
|
+
- !ruby/object:Gem::Dependency
|
|
55
|
+
name: rake-compiler-dock
|
|
56
|
+
requirement: !ruby/object:Gem::Requirement
|
|
57
|
+
requirements:
|
|
58
|
+
- - "~>"
|
|
59
|
+
- !ruby/object:Gem::Version
|
|
60
|
+
version: '1.9'
|
|
61
|
+
type: :development
|
|
62
|
+
prerelease: false
|
|
63
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
64
|
+
requirements:
|
|
65
|
+
- - "~>"
|
|
66
|
+
- !ruby/object:Gem::Version
|
|
67
|
+
version: '1.9'
|
|
68
|
+
- !ruby/object:Gem::Dependency
|
|
69
|
+
name: rspec
|
|
70
|
+
requirement: !ruby/object:Gem::Requirement
|
|
71
|
+
requirements:
|
|
72
|
+
- - "~>"
|
|
73
|
+
- !ruby/object:Gem::Version
|
|
74
|
+
version: '3.13'
|
|
75
|
+
type: :development
|
|
76
|
+
prerelease: false
|
|
77
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
78
|
+
requirements:
|
|
79
|
+
- - "~>"
|
|
80
|
+
- !ruby/object:Gem::Version
|
|
81
|
+
version: '3.13'
|
|
82
|
+
description: A high-performance Ruby client for ClickHouse using the native binary
|
|
83
|
+
protocol via a C++ extension wrapping clickhouse-cpp.
|
|
84
|
+
email:
|
|
85
|
+
- tycoooon@gmail.com
|
|
86
|
+
executables: []
|
|
87
|
+
extensions:
|
|
88
|
+
- ext/clickhouse_native/extconf.rb
|
|
89
|
+
extra_rdoc_files: []
|
|
90
|
+
files:
|
|
91
|
+
- ext/clickhouse_native/client.cpp
|
|
92
|
+
- ext/clickhouse_native/extconf.rb
|
|
93
|
+
- ext/clickhouse_native/vendor/clickhouse-cpp/.clang-format
|
|
94
|
+
- ext/clickhouse_native/vendor/clickhouse-cpp/.git
|
|
95
|
+
- ext/clickhouse_native/vendor/clickhouse-cpp/.gitattributes
|
|
96
|
+
- ext/clickhouse_native/vendor/clickhouse-cpp/.github/CODEOWNERS
|
|
97
|
+
- ext/clickhouse_native/vendor/clickhouse-cpp/.github/workflows/linux.yml
|
|
98
|
+
- ext/clickhouse_native/vendor/clickhouse-cpp/.github/workflows/macos.yml
|
|
99
|
+
- ext/clickhouse_native/vendor/clickhouse-cpp/.github/workflows/windows_mingw.yml
|
|
100
|
+
- ext/clickhouse_native/vendor/clickhouse-cpp/.github/workflows/windows_msvc.yml
|
|
101
|
+
- ext/clickhouse_native/vendor/clickhouse-cpp/.gitignore
|
|
102
|
+
- ext/clickhouse_native/vendor/clickhouse-cpp/.travis.yml
|
|
103
|
+
- ext/clickhouse_native/vendor/clickhouse-cpp/CMakeLists.txt
|
|
104
|
+
- ext/clickhouse_native/vendor/clickhouse-cpp/LICENSE
|
|
105
|
+
- ext/clickhouse_native/vendor/clickhouse-cpp/README.md
|
|
106
|
+
- ext/clickhouse_native/vendor/clickhouse-cpp/clickhouse/CMakeLists.txt
|
|
107
|
+
- ext/clickhouse_native/vendor/clickhouse-cpp/clickhouse/base/buffer.h
|
|
108
|
+
- ext/clickhouse_native/vendor/clickhouse-cpp/clickhouse/base/compressed.cpp
|
|
109
|
+
- ext/clickhouse_native/vendor/clickhouse-cpp/clickhouse/base/compressed.h
|
|
110
|
+
- ext/clickhouse_native/vendor/clickhouse-cpp/clickhouse/base/endpoints_iterator.cpp
|
|
111
|
+
- ext/clickhouse_native/vendor/clickhouse-cpp/clickhouse/base/endpoints_iterator.h
|
|
112
|
+
- ext/clickhouse_native/vendor/clickhouse-cpp/clickhouse/base/input.cpp
|
|
113
|
+
- ext/clickhouse_native/vendor/clickhouse-cpp/clickhouse/base/input.h
|
|
114
|
+
- ext/clickhouse_native/vendor/clickhouse-cpp/clickhouse/base/open_telemetry.h
|
|
115
|
+
- ext/clickhouse_native/vendor/clickhouse-cpp/clickhouse/base/output.cpp
|
|
116
|
+
- ext/clickhouse_native/vendor/clickhouse-cpp/clickhouse/base/output.h
|
|
117
|
+
- ext/clickhouse_native/vendor/clickhouse-cpp/clickhouse/base/platform.cpp
|
|
118
|
+
- ext/clickhouse_native/vendor/clickhouse-cpp/clickhouse/base/platform.h
|
|
119
|
+
- ext/clickhouse_native/vendor/clickhouse-cpp/clickhouse/base/projected_iterator.h
|
|
120
|
+
- ext/clickhouse_native/vendor/clickhouse-cpp/clickhouse/base/singleton.h
|
|
121
|
+
- ext/clickhouse_native/vendor/clickhouse-cpp/clickhouse/base/socket.cpp
|
|
122
|
+
- ext/clickhouse_native/vendor/clickhouse-cpp/clickhouse/base/socket.h
|
|
123
|
+
- ext/clickhouse_native/vendor/clickhouse-cpp/clickhouse/base/sslsocket.cpp
|
|
124
|
+
- ext/clickhouse_native/vendor/clickhouse-cpp/clickhouse/base/sslsocket.h
|
|
125
|
+
- ext/clickhouse_native/vendor/clickhouse-cpp/clickhouse/base/string_utils.h
|
|
126
|
+
- ext/clickhouse_native/vendor/clickhouse-cpp/clickhouse/base/string_view.h
|
|
127
|
+
- ext/clickhouse_native/vendor/clickhouse-cpp/clickhouse/base/uuid.h
|
|
128
|
+
- ext/clickhouse_native/vendor/clickhouse-cpp/clickhouse/base/wire_format.cpp
|
|
129
|
+
- ext/clickhouse_native/vendor/clickhouse-cpp/clickhouse/base/wire_format.h
|
|
130
|
+
- ext/clickhouse_native/vendor/clickhouse-cpp/clickhouse/block.cpp
|
|
131
|
+
- ext/clickhouse_native/vendor/clickhouse-cpp/clickhouse/block.h
|
|
132
|
+
- ext/clickhouse_native/vendor/clickhouse-cpp/clickhouse/client.cpp
|
|
133
|
+
- ext/clickhouse_native/vendor/clickhouse-cpp/clickhouse/client.h
|
|
134
|
+
- ext/clickhouse_native/vendor/clickhouse-cpp/clickhouse/columns/array.cpp
|
|
135
|
+
- ext/clickhouse_native/vendor/clickhouse-cpp/clickhouse/columns/array.h
|
|
136
|
+
- ext/clickhouse_native/vendor/clickhouse-cpp/clickhouse/columns/column.cpp
|
|
137
|
+
- ext/clickhouse_native/vendor/clickhouse-cpp/clickhouse/columns/column.h
|
|
138
|
+
- ext/clickhouse_native/vendor/clickhouse-cpp/clickhouse/columns/date.cpp
|
|
139
|
+
- ext/clickhouse_native/vendor/clickhouse-cpp/clickhouse/columns/date.h
|
|
140
|
+
- ext/clickhouse_native/vendor/clickhouse-cpp/clickhouse/columns/decimal.cpp
|
|
141
|
+
- ext/clickhouse_native/vendor/clickhouse-cpp/clickhouse/columns/decimal.h
|
|
142
|
+
- ext/clickhouse_native/vendor/clickhouse-cpp/clickhouse/columns/enum.cpp
|
|
143
|
+
- ext/clickhouse_native/vendor/clickhouse-cpp/clickhouse/columns/enum.h
|
|
144
|
+
- ext/clickhouse_native/vendor/clickhouse-cpp/clickhouse/columns/factory.cpp
|
|
145
|
+
- ext/clickhouse_native/vendor/clickhouse-cpp/clickhouse/columns/factory.h
|
|
146
|
+
- ext/clickhouse_native/vendor/clickhouse-cpp/clickhouse/columns/geo.cpp
|
|
147
|
+
- ext/clickhouse_native/vendor/clickhouse-cpp/clickhouse/columns/geo.h
|
|
148
|
+
- ext/clickhouse_native/vendor/clickhouse-cpp/clickhouse/columns/ip4.cpp
|
|
149
|
+
- ext/clickhouse_native/vendor/clickhouse-cpp/clickhouse/columns/ip4.h
|
|
150
|
+
- ext/clickhouse_native/vendor/clickhouse-cpp/clickhouse/columns/ip6.cpp
|
|
151
|
+
- ext/clickhouse_native/vendor/clickhouse-cpp/clickhouse/columns/ip6.h
|
|
152
|
+
- ext/clickhouse_native/vendor/clickhouse-cpp/clickhouse/columns/itemview.cpp
|
|
153
|
+
- ext/clickhouse_native/vendor/clickhouse-cpp/clickhouse/columns/itemview.h
|
|
154
|
+
- ext/clickhouse_native/vendor/clickhouse-cpp/clickhouse/columns/lowcardinality.cpp
|
|
155
|
+
- ext/clickhouse_native/vendor/clickhouse-cpp/clickhouse/columns/lowcardinality.h
|
|
156
|
+
- ext/clickhouse_native/vendor/clickhouse-cpp/clickhouse/columns/lowcardinalityadaptor.h
|
|
157
|
+
- ext/clickhouse_native/vendor/clickhouse-cpp/clickhouse/columns/map.cpp
|
|
158
|
+
- ext/clickhouse_native/vendor/clickhouse-cpp/clickhouse/columns/map.h
|
|
159
|
+
- ext/clickhouse_native/vendor/clickhouse-cpp/clickhouse/columns/nothing.h
|
|
160
|
+
- ext/clickhouse_native/vendor/clickhouse-cpp/clickhouse/columns/nullable.cpp
|
|
161
|
+
- ext/clickhouse_native/vendor/clickhouse-cpp/clickhouse/columns/nullable.h
|
|
162
|
+
- ext/clickhouse_native/vendor/clickhouse-cpp/clickhouse/columns/numeric.cpp
|
|
163
|
+
- ext/clickhouse_native/vendor/clickhouse-cpp/clickhouse/columns/numeric.h
|
|
164
|
+
- ext/clickhouse_native/vendor/clickhouse-cpp/clickhouse/columns/string.cpp
|
|
165
|
+
- ext/clickhouse_native/vendor/clickhouse-cpp/clickhouse/columns/string.h
|
|
166
|
+
- ext/clickhouse_native/vendor/clickhouse-cpp/clickhouse/columns/time.cpp
|
|
167
|
+
- ext/clickhouse_native/vendor/clickhouse-cpp/clickhouse/columns/time.h
|
|
168
|
+
- ext/clickhouse_native/vendor/clickhouse-cpp/clickhouse/columns/tuple.cpp
|
|
169
|
+
- ext/clickhouse_native/vendor/clickhouse-cpp/clickhouse/columns/tuple.h
|
|
170
|
+
- ext/clickhouse_native/vendor/clickhouse-cpp/clickhouse/columns/utils.h
|
|
171
|
+
- ext/clickhouse_native/vendor/clickhouse-cpp/clickhouse/columns/uuid.cpp
|
|
172
|
+
- ext/clickhouse_native/vendor/clickhouse-cpp/clickhouse/columns/uuid.h
|
|
173
|
+
- ext/clickhouse_native/vendor/clickhouse-cpp/clickhouse/error_codes.h
|
|
174
|
+
- ext/clickhouse_native/vendor/clickhouse-cpp/clickhouse/exceptions.h
|
|
175
|
+
- ext/clickhouse_native/vendor/clickhouse-cpp/clickhouse/protocol.h
|
|
176
|
+
- ext/clickhouse_native/vendor/clickhouse-cpp/clickhouse/query.cpp
|
|
177
|
+
- ext/clickhouse_native/vendor/clickhouse-cpp/clickhouse/query.h
|
|
178
|
+
- ext/clickhouse_native/vendor/clickhouse-cpp/clickhouse/server_exception.h
|
|
179
|
+
- ext/clickhouse_native/vendor/clickhouse-cpp/clickhouse/types/type_parser.cpp
|
|
180
|
+
- ext/clickhouse_native/vendor/clickhouse-cpp/clickhouse/types/type_parser.h
|
|
181
|
+
- ext/clickhouse_native/vendor/clickhouse-cpp/clickhouse/types/types.cpp
|
|
182
|
+
- ext/clickhouse_native/vendor/clickhouse-cpp/clickhouse/types/types.h
|
|
183
|
+
- ext/clickhouse_native/vendor/clickhouse-cpp/clickhouse/version.h
|
|
184
|
+
- ext/clickhouse_native/vendor/clickhouse-cpp/cmake/Findcityhash.cmake
|
|
185
|
+
- ext/clickhouse_native/vendor/clickhouse-cpp/cmake/Findlz4.cmake
|
|
186
|
+
- ext/clickhouse_native/vendor/clickhouse-cpp/cmake/Findzstd.cmake
|
|
187
|
+
- ext/clickhouse_native/vendor/clickhouse-cpp/cmake/cpp17.cmake
|
|
188
|
+
- ext/clickhouse_native/vendor/clickhouse-cpp/cmake/openssl.cmake
|
|
189
|
+
- ext/clickhouse_native/vendor/clickhouse-cpp/cmake/subdirs.cmake
|
|
190
|
+
- ext/clickhouse_native/vendor/clickhouse-cpp/cmake/version.cmake
|
|
191
|
+
- ext/clickhouse_native/vendor/clickhouse-cpp/contrib/absl/absl/CMakeLists.txt
|
|
192
|
+
- ext/clickhouse_native/vendor/clickhouse-cpp/contrib/absl/absl/base/attributes.h
|
|
193
|
+
- ext/clickhouse_native/vendor/clickhouse-cpp/contrib/absl/absl/base/config.h
|
|
194
|
+
- ext/clickhouse_native/vendor/clickhouse-cpp/contrib/absl/absl/base/internal/bits.h
|
|
195
|
+
- ext/clickhouse_native/vendor/clickhouse-cpp/contrib/absl/absl/base/macros.h
|
|
196
|
+
- ext/clickhouse_native/vendor/clickhouse-cpp/contrib/absl/absl/base/optimization.h
|
|
197
|
+
- ext/clickhouse_native/vendor/clickhouse-cpp/contrib/absl/absl/base/options.h
|
|
198
|
+
- ext/clickhouse_native/vendor/clickhouse-cpp/contrib/absl/absl/base/policy_checks.h
|
|
199
|
+
- ext/clickhouse_native/vendor/clickhouse-cpp/contrib/absl/absl/base/port.h
|
|
200
|
+
- ext/clickhouse_native/vendor/clickhouse-cpp/contrib/absl/absl/numeric/int128.cc
|
|
201
|
+
- ext/clickhouse_native/vendor/clickhouse-cpp/contrib/absl/absl/numeric/int128.h
|
|
202
|
+
- ext/clickhouse_native/vendor/clickhouse-cpp/contrib/absl/absl/numeric/int128_have_intrinsic.inc
|
|
203
|
+
- ext/clickhouse_native/vendor/clickhouse-cpp/contrib/absl/absl/numeric/int128_no_intrinsic.inc
|
|
204
|
+
- ext/clickhouse_native/vendor/clickhouse-cpp/contrib/cityhash/cityhash/BUCK
|
|
205
|
+
- ext/clickhouse_native/vendor/clickhouse-cpp/contrib/cityhash/cityhash/CMakeLists.txt
|
|
206
|
+
- ext/clickhouse_native/vendor/clickhouse-cpp/contrib/cityhash/cityhash/COPYING
|
|
207
|
+
- ext/clickhouse_native/vendor/clickhouse-cpp/contrib/cityhash/cityhash/city.cc
|
|
208
|
+
- ext/clickhouse_native/vendor/clickhouse-cpp/contrib/cityhash/cityhash/city.h
|
|
209
|
+
- ext/clickhouse_native/vendor/clickhouse-cpp/contrib/cityhash/cityhash/citycrc.h
|
|
210
|
+
- ext/clickhouse_native/vendor/clickhouse-cpp/contrib/cityhash/cityhash/config.h
|
|
211
|
+
- ext/clickhouse_native/vendor/clickhouse-cpp/contrib/gtest/BUCK
|
|
212
|
+
- ext/clickhouse_native/vendor/clickhouse-cpp/contrib/gtest/CMakeLists.txt
|
|
213
|
+
- ext/clickhouse_native/vendor/clickhouse-cpp/contrib/gtest/LICENSE
|
|
214
|
+
- ext/clickhouse_native/vendor/clickhouse-cpp/contrib/gtest/README.md
|
|
215
|
+
- ext/clickhouse_native/vendor/clickhouse-cpp/contrib/gtest/include/gtest/gtest-death-test.h
|
|
216
|
+
- ext/clickhouse_native/vendor/clickhouse-cpp/contrib/gtest/include/gtest/gtest-matchers.h
|
|
217
|
+
- ext/clickhouse_native/vendor/clickhouse-cpp/contrib/gtest/include/gtest/gtest-message.h
|
|
218
|
+
- ext/clickhouse_native/vendor/clickhouse-cpp/contrib/gtest/include/gtest/gtest-param-test.h
|
|
219
|
+
- ext/clickhouse_native/vendor/clickhouse-cpp/contrib/gtest/include/gtest/gtest-printers.h
|
|
220
|
+
- ext/clickhouse_native/vendor/clickhouse-cpp/contrib/gtest/include/gtest/gtest-spi.h
|
|
221
|
+
- ext/clickhouse_native/vendor/clickhouse-cpp/contrib/gtest/include/gtest/gtest-test-part.h
|
|
222
|
+
- ext/clickhouse_native/vendor/clickhouse-cpp/contrib/gtest/include/gtest/gtest-typed-test.h
|
|
223
|
+
- ext/clickhouse_native/vendor/clickhouse-cpp/contrib/gtest/include/gtest/gtest.h
|
|
224
|
+
- ext/clickhouse_native/vendor/clickhouse-cpp/contrib/gtest/include/gtest/gtest_pred_impl.h
|
|
225
|
+
- ext/clickhouse_native/vendor/clickhouse-cpp/contrib/gtest/include/gtest/gtest_prod.h
|
|
226
|
+
- ext/clickhouse_native/vendor/clickhouse-cpp/contrib/gtest/include/gtest/internal/custom/README.md
|
|
227
|
+
- ext/clickhouse_native/vendor/clickhouse-cpp/contrib/gtest/include/gtest/internal/custom/gtest-port.h
|
|
228
|
+
- ext/clickhouse_native/vendor/clickhouse-cpp/contrib/gtest/include/gtest/internal/custom/gtest-printers.h
|
|
229
|
+
- ext/clickhouse_native/vendor/clickhouse-cpp/contrib/gtest/include/gtest/internal/custom/gtest.h
|
|
230
|
+
- ext/clickhouse_native/vendor/clickhouse-cpp/contrib/gtest/include/gtest/internal/gtest-death-test-internal.h
|
|
231
|
+
- ext/clickhouse_native/vendor/clickhouse-cpp/contrib/gtest/include/gtest/internal/gtest-filepath.h
|
|
232
|
+
- ext/clickhouse_native/vendor/clickhouse-cpp/contrib/gtest/include/gtest/internal/gtest-internal.h
|
|
233
|
+
- ext/clickhouse_native/vendor/clickhouse-cpp/contrib/gtest/include/gtest/internal/gtest-param-util.h
|
|
234
|
+
- ext/clickhouse_native/vendor/clickhouse-cpp/contrib/gtest/include/gtest/internal/gtest-port-arch.h
|
|
235
|
+
- ext/clickhouse_native/vendor/clickhouse-cpp/contrib/gtest/include/gtest/internal/gtest-port.h
|
|
236
|
+
- ext/clickhouse_native/vendor/clickhouse-cpp/contrib/gtest/include/gtest/internal/gtest-string.h
|
|
237
|
+
- ext/clickhouse_native/vendor/clickhouse-cpp/contrib/gtest/include/gtest/internal/gtest-type-util.h
|
|
238
|
+
- ext/clickhouse_native/vendor/clickhouse-cpp/contrib/gtest/src/gtest-all.cc
|
|
239
|
+
- ext/clickhouse_native/vendor/clickhouse-cpp/contrib/gtest/src/gtest-death-test.cc
|
|
240
|
+
- ext/clickhouse_native/vendor/clickhouse-cpp/contrib/gtest/src/gtest-filepath.cc
|
|
241
|
+
- ext/clickhouse_native/vendor/clickhouse-cpp/contrib/gtest/src/gtest-internal-inl.h
|
|
242
|
+
- ext/clickhouse_native/vendor/clickhouse-cpp/contrib/gtest/src/gtest-matchers.cc
|
|
243
|
+
- ext/clickhouse_native/vendor/clickhouse-cpp/contrib/gtest/src/gtest-port.cc
|
|
244
|
+
- ext/clickhouse_native/vendor/clickhouse-cpp/contrib/gtest/src/gtest-printers.cc
|
|
245
|
+
- ext/clickhouse_native/vendor/clickhouse-cpp/contrib/gtest/src/gtest-test-part.cc
|
|
246
|
+
- ext/clickhouse_native/vendor/clickhouse-cpp/contrib/gtest/src/gtest-typed-test.cc
|
|
247
|
+
- ext/clickhouse_native/vendor/clickhouse-cpp/contrib/gtest/src/gtest.cc
|
|
248
|
+
- ext/clickhouse_native/vendor/clickhouse-cpp/contrib/gtest/src/gtest_main.cc
|
|
249
|
+
- ext/clickhouse_native/vendor/clickhouse-cpp/contrib/lz4/lz4/BUCK
|
|
250
|
+
- ext/clickhouse_native/vendor/clickhouse-cpp/contrib/lz4/lz4/CMakeLists.txt
|
|
251
|
+
- ext/clickhouse_native/vendor/clickhouse-cpp/contrib/lz4/lz4/LICENSE
|
|
252
|
+
- ext/clickhouse_native/vendor/clickhouse-cpp/contrib/lz4/lz4/lz4.c
|
|
253
|
+
- ext/clickhouse_native/vendor/clickhouse-cpp/contrib/lz4/lz4/lz4.h
|
|
254
|
+
- ext/clickhouse_native/vendor/clickhouse-cpp/contrib/lz4/lz4/lz4hc.c
|
|
255
|
+
- ext/clickhouse_native/vendor/clickhouse-cpp/contrib/lz4/lz4/lz4hc.h
|
|
256
|
+
- ext/clickhouse_native/vendor/clickhouse-cpp/contrib/zstd/zstd/BUCK
|
|
257
|
+
- ext/clickhouse_native/vendor/clickhouse-cpp/contrib/zstd/zstd/CMakeLists.txt
|
|
258
|
+
- ext/clickhouse_native/vendor/clickhouse-cpp/contrib/zstd/zstd/LICENSE
|
|
259
|
+
- ext/clickhouse_native/vendor/clickhouse-cpp/contrib/zstd/zstd/common/allocations.h
|
|
260
|
+
- ext/clickhouse_native/vendor/clickhouse-cpp/contrib/zstd/zstd/common/bits.h
|
|
261
|
+
- ext/clickhouse_native/vendor/clickhouse-cpp/contrib/zstd/zstd/common/bitstream.h
|
|
262
|
+
- ext/clickhouse_native/vendor/clickhouse-cpp/contrib/zstd/zstd/common/compiler.h
|
|
263
|
+
- ext/clickhouse_native/vendor/clickhouse-cpp/contrib/zstd/zstd/common/cpu.h
|
|
264
|
+
- ext/clickhouse_native/vendor/clickhouse-cpp/contrib/zstd/zstd/common/debug.c
|
|
265
|
+
- ext/clickhouse_native/vendor/clickhouse-cpp/contrib/zstd/zstd/common/debug.h
|
|
266
|
+
- ext/clickhouse_native/vendor/clickhouse-cpp/contrib/zstd/zstd/common/entropy_common.c
|
|
267
|
+
- ext/clickhouse_native/vendor/clickhouse-cpp/contrib/zstd/zstd/common/error_private.c
|
|
268
|
+
- ext/clickhouse_native/vendor/clickhouse-cpp/contrib/zstd/zstd/common/error_private.h
|
|
269
|
+
- ext/clickhouse_native/vendor/clickhouse-cpp/contrib/zstd/zstd/common/fse.h
|
|
270
|
+
- ext/clickhouse_native/vendor/clickhouse-cpp/contrib/zstd/zstd/common/fse_decompress.c
|
|
271
|
+
- ext/clickhouse_native/vendor/clickhouse-cpp/contrib/zstd/zstd/common/huf.h
|
|
272
|
+
- ext/clickhouse_native/vendor/clickhouse-cpp/contrib/zstd/zstd/common/mem.h
|
|
273
|
+
- ext/clickhouse_native/vendor/clickhouse-cpp/contrib/zstd/zstd/common/pool.c
|
|
274
|
+
- ext/clickhouse_native/vendor/clickhouse-cpp/contrib/zstd/zstd/common/pool.h
|
|
275
|
+
- ext/clickhouse_native/vendor/clickhouse-cpp/contrib/zstd/zstd/common/portability_macros.h
|
|
276
|
+
- ext/clickhouse_native/vendor/clickhouse-cpp/contrib/zstd/zstd/common/threading.c
|
|
277
|
+
- ext/clickhouse_native/vendor/clickhouse-cpp/contrib/zstd/zstd/common/threading.h
|
|
278
|
+
- ext/clickhouse_native/vendor/clickhouse-cpp/contrib/zstd/zstd/common/xxhash.c
|
|
279
|
+
- ext/clickhouse_native/vendor/clickhouse-cpp/contrib/zstd/zstd/common/xxhash.h
|
|
280
|
+
- ext/clickhouse_native/vendor/clickhouse-cpp/contrib/zstd/zstd/common/zstd_common.c
|
|
281
|
+
- ext/clickhouse_native/vendor/clickhouse-cpp/contrib/zstd/zstd/common/zstd_deps.h
|
|
282
|
+
- ext/clickhouse_native/vendor/clickhouse-cpp/contrib/zstd/zstd/common/zstd_internal.h
|
|
283
|
+
- ext/clickhouse_native/vendor/clickhouse-cpp/contrib/zstd/zstd/common/zstd_trace.h
|
|
284
|
+
- ext/clickhouse_native/vendor/clickhouse-cpp/contrib/zstd/zstd/compress/clevels.h
|
|
285
|
+
- ext/clickhouse_native/vendor/clickhouse-cpp/contrib/zstd/zstd/compress/fse_compress.c
|
|
286
|
+
- ext/clickhouse_native/vendor/clickhouse-cpp/contrib/zstd/zstd/compress/hist.c
|
|
287
|
+
- ext/clickhouse_native/vendor/clickhouse-cpp/contrib/zstd/zstd/compress/hist.h
|
|
288
|
+
- ext/clickhouse_native/vendor/clickhouse-cpp/contrib/zstd/zstd/compress/huf_compress.c
|
|
289
|
+
- ext/clickhouse_native/vendor/clickhouse-cpp/contrib/zstd/zstd/compress/zstd_compress.c
|
|
290
|
+
- ext/clickhouse_native/vendor/clickhouse-cpp/contrib/zstd/zstd/compress/zstd_compress_internal.h
|
|
291
|
+
- ext/clickhouse_native/vendor/clickhouse-cpp/contrib/zstd/zstd/compress/zstd_compress_literals.c
|
|
292
|
+
- ext/clickhouse_native/vendor/clickhouse-cpp/contrib/zstd/zstd/compress/zstd_compress_literals.h
|
|
293
|
+
- ext/clickhouse_native/vendor/clickhouse-cpp/contrib/zstd/zstd/compress/zstd_compress_sequences.c
|
|
294
|
+
- ext/clickhouse_native/vendor/clickhouse-cpp/contrib/zstd/zstd/compress/zstd_compress_sequences.h
|
|
295
|
+
- ext/clickhouse_native/vendor/clickhouse-cpp/contrib/zstd/zstd/compress/zstd_compress_superblock.c
|
|
296
|
+
- ext/clickhouse_native/vendor/clickhouse-cpp/contrib/zstd/zstd/compress/zstd_compress_superblock.h
|
|
297
|
+
- ext/clickhouse_native/vendor/clickhouse-cpp/contrib/zstd/zstd/compress/zstd_cwksp.h
|
|
298
|
+
- ext/clickhouse_native/vendor/clickhouse-cpp/contrib/zstd/zstd/compress/zstd_double_fast.c
|
|
299
|
+
- ext/clickhouse_native/vendor/clickhouse-cpp/contrib/zstd/zstd/compress/zstd_double_fast.h
|
|
300
|
+
- ext/clickhouse_native/vendor/clickhouse-cpp/contrib/zstd/zstd/compress/zstd_fast.c
|
|
301
|
+
- ext/clickhouse_native/vendor/clickhouse-cpp/contrib/zstd/zstd/compress/zstd_fast.h
|
|
302
|
+
- ext/clickhouse_native/vendor/clickhouse-cpp/contrib/zstd/zstd/compress/zstd_lazy.c
|
|
303
|
+
- ext/clickhouse_native/vendor/clickhouse-cpp/contrib/zstd/zstd/compress/zstd_lazy.h
|
|
304
|
+
- ext/clickhouse_native/vendor/clickhouse-cpp/contrib/zstd/zstd/compress/zstd_ldm.c
|
|
305
|
+
- ext/clickhouse_native/vendor/clickhouse-cpp/contrib/zstd/zstd/compress/zstd_ldm.h
|
|
306
|
+
- ext/clickhouse_native/vendor/clickhouse-cpp/contrib/zstd/zstd/compress/zstd_ldm_geartab.h
|
|
307
|
+
- ext/clickhouse_native/vendor/clickhouse-cpp/contrib/zstd/zstd/compress/zstd_opt.c
|
|
308
|
+
- ext/clickhouse_native/vendor/clickhouse-cpp/contrib/zstd/zstd/compress/zstd_opt.h
|
|
309
|
+
- ext/clickhouse_native/vendor/clickhouse-cpp/contrib/zstd/zstd/compress/zstdmt_compress.c
|
|
310
|
+
- ext/clickhouse_native/vendor/clickhouse-cpp/contrib/zstd/zstd/compress/zstdmt_compress.h
|
|
311
|
+
- ext/clickhouse_native/vendor/clickhouse-cpp/contrib/zstd/zstd/decompress/huf_decompress.c
|
|
312
|
+
- ext/clickhouse_native/vendor/clickhouse-cpp/contrib/zstd/zstd/decompress/huf_decompress_amd64.S
|
|
313
|
+
- ext/clickhouse_native/vendor/clickhouse-cpp/contrib/zstd/zstd/decompress/zstd_ddict.c
|
|
314
|
+
- ext/clickhouse_native/vendor/clickhouse-cpp/contrib/zstd/zstd/decompress/zstd_ddict.h
|
|
315
|
+
- ext/clickhouse_native/vendor/clickhouse-cpp/contrib/zstd/zstd/decompress/zstd_decompress.c
|
|
316
|
+
- ext/clickhouse_native/vendor/clickhouse-cpp/contrib/zstd/zstd/decompress/zstd_decompress_block.c
|
|
317
|
+
- ext/clickhouse_native/vendor/clickhouse-cpp/contrib/zstd/zstd/decompress/zstd_decompress_block.h
|
|
318
|
+
- ext/clickhouse_native/vendor/clickhouse-cpp/contrib/zstd/zstd/decompress/zstd_decompress_internal.h
|
|
319
|
+
- ext/clickhouse_native/vendor/clickhouse-cpp/contrib/zstd/zstd/dictBuilder/cover.c
|
|
320
|
+
- ext/clickhouse_native/vendor/clickhouse-cpp/contrib/zstd/zstd/dictBuilder/cover.h
|
|
321
|
+
- ext/clickhouse_native/vendor/clickhouse-cpp/contrib/zstd/zstd/dictBuilder/divsufsort.c
|
|
322
|
+
- ext/clickhouse_native/vendor/clickhouse-cpp/contrib/zstd/zstd/dictBuilder/divsufsort.h
|
|
323
|
+
- ext/clickhouse_native/vendor/clickhouse-cpp/contrib/zstd/zstd/dictBuilder/fastcover.c
|
|
324
|
+
- ext/clickhouse_native/vendor/clickhouse-cpp/contrib/zstd/zstd/dictBuilder/zdict.c
|
|
325
|
+
- ext/clickhouse_native/vendor/clickhouse-cpp/contrib/zstd/zstd/legacy/zstd_legacy.h
|
|
326
|
+
- ext/clickhouse_native/vendor/clickhouse-cpp/contrib/zstd/zstd/legacy/zstd_v01.c
|
|
327
|
+
- ext/clickhouse_native/vendor/clickhouse-cpp/contrib/zstd/zstd/legacy/zstd_v01.h
|
|
328
|
+
- ext/clickhouse_native/vendor/clickhouse-cpp/contrib/zstd/zstd/legacy/zstd_v02.c
|
|
329
|
+
- ext/clickhouse_native/vendor/clickhouse-cpp/contrib/zstd/zstd/legacy/zstd_v02.h
|
|
330
|
+
- ext/clickhouse_native/vendor/clickhouse-cpp/contrib/zstd/zstd/legacy/zstd_v03.c
|
|
331
|
+
- ext/clickhouse_native/vendor/clickhouse-cpp/contrib/zstd/zstd/legacy/zstd_v03.h
|
|
332
|
+
- ext/clickhouse_native/vendor/clickhouse-cpp/contrib/zstd/zstd/legacy/zstd_v04.c
|
|
333
|
+
- ext/clickhouse_native/vendor/clickhouse-cpp/contrib/zstd/zstd/legacy/zstd_v04.h
|
|
334
|
+
- ext/clickhouse_native/vendor/clickhouse-cpp/contrib/zstd/zstd/legacy/zstd_v05.c
|
|
335
|
+
- ext/clickhouse_native/vendor/clickhouse-cpp/contrib/zstd/zstd/legacy/zstd_v05.h
|
|
336
|
+
- ext/clickhouse_native/vendor/clickhouse-cpp/contrib/zstd/zstd/legacy/zstd_v06.c
|
|
337
|
+
- ext/clickhouse_native/vendor/clickhouse-cpp/contrib/zstd/zstd/legacy/zstd_v06.h
|
|
338
|
+
- ext/clickhouse_native/vendor/clickhouse-cpp/contrib/zstd/zstd/legacy/zstd_v07.c
|
|
339
|
+
- ext/clickhouse_native/vendor/clickhouse-cpp/contrib/zstd/zstd/legacy/zstd_v07.h
|
|
340
|
+
- ext/clickhouse_native/vendor/clickhouse-cpp/contrib/zstd/zstd/zdict.h
|
|
341
|
+
- ext/clickhouse_native/vendor/clickhouse-cpp/contrib/zstd/zstd/zstd.h
|
|
342
|
+
- ext/clickhouse_native/vendor/clickhouse-cpp/contrib/zstd/zstd/zstd_errors.h
|
|
343
|
+
- lib/clickhouse_native.rb
|
|
344
|
+
- lib/clickhouse_native/clickhouse_native.bundle
|
|
345
|
+
- lib/clickhouse_native/client.rb
|
|
346
|
+
- lib/clickhouse_native/errors.rb
|
|
347
|
+
- lib/clickhouse_native/pool.rb
|
|
348
|
+
- lib/clickhouse_native/version.rb
|
|
349
|
+
licenses:
|
|
350
|
+
- Apache-2.0
|
|
351
|
+
metadata: {}
|
|
352
|
+
rdoc_options: []
|
|
353
|
+
require_paths:
|
|
354
|
+
- lib
|
|
355
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
|
356
|
+
requirements:
|
|
357
|
+
- - ">="
|
|
358
|
+
- !ruby/object:Gem::Version
|
|
359
|
+
version: 3.1.0
|
|
360
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
361
|
+
requirements:
|
|
362
|
+
- - ">="
|
|
363
|
+
- !ruby/object:Gem::Version
|
|
364
|
+
version: '0'
|
|
365
|
+
requirements: []
|
|
366
|
+
rubygems_version: 4.0.6
|
|
367
|
+
specification_version: 4
|
|
368
|
+
summary: ClickHouse Ruby driver over the native TCP protocol
|
|
369
|
+
test_files: []
|