Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update iresearch #19342

Merged
merged 2 commits into from
Jun 28, 2023
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
Update iresearch
  • Loading branch information
MBkkt committed Jun 28, 2023
commit 5cab4fde309d89bb73084a69e3ba318b244e9761
2 changes: 1 addition & 1 deletion 3rdParty/iresearch
Submodule iresearch updated 86 files
+3 −0 CMakeLists.txt
+5 −3 core/formats/columnstore.cpp
+1 −4 core/formats/columnstore2.cpp
+9 −4 core/formats/columnstore2.hpp
+8 −1 core/formats/formats.hpp
+62 −39 core/formats/formats_10.cpp
+19 −10 core/formats/formats_burst_trie.cpp
+14 −10 core/formats/skip_list.cpp
+4 −3 core/formats/skip_list.hpp
+213 −154 core/formats/wand_writer.hpp
+11 −9 core/index/buffered_column_iterator.hpp
+6 −0 core/index/composite_reader_impl.hpp
+4 −0 core/index/directory_reader.cpp
+2 −0 core/index/directory_reader.hpp
+2 −0 core/index/index_reader.cpp
+3 −0 core/index/index_reader.hpp
+1 −1 core/index/merge_writer.cpp
+4 −0 core/index/segment_reader.cpp
+2 −0 core/index/segment_reader.hpp
+10 −0 core/index/segment_reader_impl.cpp
+3 −1 core/index/segment_reader_impl.hpp
+41 −13 core/search/bm25.cpp
+2 −0 core/search/bm25.hpp
+35 −0 core/search/scorer.cpp
+17 −3 core/search/scorer.hpp
+0 −2 core/search/scorer_impl.hpp
+21 −16 core/search/tfidf.cpp
+2 −0 core/search/tfidf.hpp
+8 −0 core/store/data_input.hpp
+2 −26 core/store/directory_attributes.cpp
+1 −33 core/store/directory_attributes.hpp
+11 −0 core/store/fs_directory.cpp
+3 −5 core/store/memory_directory.cpp
+5 −31 core/store/memory_directory.hpp
+49 −0 core/store/mmap_directory.cpp
+2 −3 core/utils/async_utils.cpp
+2 −2 core/utils/async_utils.hpp
+2 −2 core/utils/automaton_utils.hpp
+73 −266 core/utils/container_utils.hpp
+39 −0 core/utils/empty.hpp
+1 −0 core/utils/encryption.cpp
+3 −3 core/utils/file_utils.cpp
+2 −2 core/utils/file_utils.hpp
+7 −3 core/utils/fstext/fst_builder.hpp
+4 −4 core/utils/fstext/fst_string_ref_weight.hpp
+12 −8 core/utils/fstext/fst_string_weight.hpp
+2 −2 core/utils/hash_utils.hpp
+2 −2 core/utils/levenshtein_utils.hpp
+26 −17 core/utils/string.hpp
+4 −4 core/utils/thread_utils.cpp
+2 −1 core/utils/thread_utils.hpp
+18 −0 microbench/CMakeLists.txt
+34 −0 microbench/memory_file_benchmark.cpp
+3 −0 microbench/top_term_collector_benchmark.cpp
+5 −5 tests/formats/formats_11_tests.cpp
+5 −5 tests/formats/formats_12_tests.cpp
+5 −5 tests/formats/formats_13_tests.cpp
+2 −2 tests/formats/formats_14_tests.cpp
+3 −3 tests/formats/formats_15_tests.cpp
+9 −9 tests/formats/formats_test_case_base.cpp
+4 −4 tests/index/buffered_column_test.cpp
+2 −0 tests/index/consolidation_policy_tests.cpp
+12 −1 tests/index/doc_generator.cpp
+4 −0 tests/index/doc_generator.hpp
+33 −49 tests/index/index_tests.cpp
+3 −2 tests/index/index_tests.hpp
+22 −0 tests/index/sorted_index_tests.cpp
+392 −0 tests/resources/simple_single_column_multi_term_norm.json
+2 −2 tests/search/filter_test_case_base.hpp
+41 −23 tests/search/prefix_filter_test.cpp
+3 −0 tests/search/top_terms_collector_test.cpp
+47 −5 tests/search/wand_test.cpp
+3 −51 tests/store/directory_test_case.cpp
+1 −1 tests/store/memory_index_output_tests.cpp
+3 −3 tests/tests_main.cpp
+2 −2 tests/tests_param.hpp
+1 −1 tests/utils/async_utils_tests.cpp
+44 −258 tests/utils/container_utils_tests.cpp
+3 −3 tests/utils/encryption_test.cpp
+1 −1 tests/utils/fst_builder_test.cpp
+2 −2 tests/utils/levenshtein_utils_test.cpp
+1 −1 tests/utils/thread_pool_test.cpp
+8 −8 tests/utils/utf8_path_tests.cpp
+107 −17 utils/index-put.cpp
+6 −1 utils/index-search.cpp
+12 −4 utils/main.cpp