Giter Club home page Giter Club logo

Comments (8)

azzamsa avatar azzamsa commented on June 2, 2024 2

Just helping to confirm that all the test passed on my end.

OS: Fedora Linux 36 (Workstation Edition) x86_64
Kernel: 6.0.5-200.fc36.x86_64
Shell: zsh 5.8.1
DE: GNOME 42.5
WM: Mutter
milli on  main via 🦀 v1.65.0 took 6s
❯ git rev-parse --short HEAD
6add470

milli on  main via 🦀 v1.65.0
❯ rustc --version
rustc 1.65.0 (897e37553 2022-11-02)

from milli.

Kerollmops avatar Kerollmops commented on June 2, 2024 1

Hey @amab8901,

We use bors in our CI and PRs can only be merged when tests passes you either found a flaky test (a test that fails spuriously) or would probably have too many open files or threads running at the same time.

I would advice you to increase the number of allowed open files for a single program with ulimit -Sn 8000 and/or decrease the number of thread running the tests in parallel cargo test -- --test-threads 4. Those issues are OS dependent and related to memory mapping.

Please come back if it doesn't work.

from milli.

amab8901 avatar amab8901 commented on June 2, 2024

Hey @amab8901,

We use bors in our CI and PRs can only be merged when tests passes you either found a flaky test (a test that fails spuriously) or would probably have too many open files or threads running at the same time.

I would advice you to increase the number of allowed open files for a single program with ulimit -Sn 8000 and/or decrease the number of thread running the tests in parallel cargo test -- --test-threads 4. Those issues are OS dependent and related to memory mapping.

Please come back if it doesn't work.

When I write ulimit -Sn, the output is 1048576. But if I enter ulimit -Sn 8000, that would actually be a reduction rather than an increase. Are you sure you want me to run ulimit -Sn 8000? I'm kinda hesitant about that.

When I run cargo test -- --test-threads 4, it produces the exact same number of failed tests as cargo test (104 passed, 78 failed, and 1 ignored)

from milli.

Kerollmops avatar Kerollmops commented on June 2, 2024

When I write ulimit -Sn, the output is 1048576. But if I enter ulimit -Sn 8000, that would actually be a reduction rather than an increase. Are you sure you want me to run ulimit -Sn 8000? I'm kinda hesitant about that.

Indeed, please don't run this command if the previous value is higher than the current one.

When I run cargo test -- --test-threads 4, it produces the exact same number of failed tests as cargo test (104 passed, 78 failed, and 1 ignored)

Strange, I am on my Macbook Pro M1 and a simple cargo test work as expected. What is your machine (Archlinux)? And most importantly what are the error messages for the failed tests? Can you put the output in a markdown collapse block, please?

from milli.

amab8901 avatar amab8901 commented on June 2, 2024

When I write ulimit -Sn, the output is 1048576. But if I enter ulimit -Sn 8000, that would actually be a reduction rather than an increase. Are you sure you want me to run ulimit -Sn 8000? I'm kinda hesitant about that.

Indeed, please don't run this command if the previous value is higher than the current one.

When I run cargo test -- --test-threads 4, it produces the exact same number of failed tests as cargo test (104 passed, 78 failed, and 1 ignored)

Strange, I am on my Macbook Pro M1 and a simple cargo test work as expected. What is your machine (Archlinux)? And most importantly what are the error messages for the failed tests? Can you put the output in a markdown collapse block, please?

Here is an excerpt from my terminal:
cargo test -- --test-threads 4
    Finished test [unoptimized + debuginfo] target(s) in 0.09s
     Running unittests src/lib.rs (target/debug/deps/milli-2acbdb253a96602d)

running 183 tests
test criterion::tests::parse_criterion ... ok
test asc_desc::tests::parse_asc_desc ... ok
test documents::builder::test::bad_column_count1 ... ok
test documents::builder::test::add_documents_csv ... ok
test documents::builder::test::add_single_documents_json ... ok
test documents::builder::test::bad_type_in_header ... ok
test documents::builder::test::bad_column_count2 ... ok
test documents::builder::test::coma_in_field ... ok
test documents::builder::test::double_colon_in_header ... ok
test documents::builder::test::float_in_field ... ok
test documents::builder::test::ending_by_colon_in_header ... ok
test documents::builder::test::integer_in_field ... ok
test documents::builder::test::integer_as_id ... ok
test documents::builder::test::quote_in_field ... ok
test documents::builder::test::starting_by_colon_in_header2 ... ignored
test documents::builder::test::several_colon_in_header ... ok
test documents::builder::test::simple_csv_document ... ok
test documents::test::create_documents_no_errors ... ok
test documents::test::out_of_order_json_fields ... ok
test documents::builder::test::starting_by_colon_in_header ... ok
test documents::test::out_of_order_csv_fields ... ok
test documents::test::test_nested ... ok
test documents::test::test_add_multiple_documents ... ok
test error::conditionally_lookup_for_error_message ... ok
test facet::value_encoding::tests::ordered_f64_bytes ... ok
test fields_ids_map::tests::fields_ids_map ... ok
test heed_codec::roaring_bitmap::cbo_roaring_bitmap_codec::tests::merge_cbo_roaring_bitmaps ... ok
test heed_codec::roaring_bitmap::cbo_roaring_bitmap_codec::tests::verify_encoding_decoding ... ok
test heed_codec::roaring_bitmap::cbo_roaring_bitmap_codec::tests::verify_threshold ... ok
test index::tests::aborting_indexation ... FAILED
test index::tests::add_documents_and_set_searchable_fields ... FAILED
test index::tests::initial_field_distribution ... FAILED
test index::tests::put_and_retrieve_disable_typo ... FAILED
test index::tests::set_min_word_len_for_typos ... FAILED
test index::tests::set_searchable_fields_and_add_documents ... FAILED
test external_documents_ids::tests::strange_delete_insert_ids ... ok
test search::criteria::attribute::tests::simple_flatten_query_tree ... ok
test external_documents_ids::tests::simple_insert_delete_ids ... ok
test heed_codec::roaring_bitmap_length::roaring_bitmap_len_codec::tests::deserialize_roaring_bitmap_length ... ok
test search::criteria::typo::test::initial_placeholder_no_facets ... ok
test search::criteria::typo::test::initial_placeholder_with_facets ... ok
test search::distinct::facet_distinct::test::test_number ... FAILED
test search::distinct::facet_distinct::test::test_string ... FAILED
test search::distinct::facet_distinct::test::test_strings ... FAILED
test search::distinct::noop_distinct::test::test_noop ... ok
test search::facet::facet_distribution::tests::few_candidates_few_facet_values ... FAILED
test search::facet::facet_distribution::tests::many_candidates_many_facet_values ... FAILED
test search::facet::facet_distribution::tests::many_candidates_few_facet_values ... FAILED
test search::criteria::typo::test::initial_query_tree_no_facets ... ok
test search::criteria::typo::test::initial_query_tree_with_facets ... ok
test search::facet::facet_distribution_iter::tests::filter_distribution_all_stop_early ... ok
test search::facet::facet_distribution_iter::tests::filter_distribution_all ... ok
test search::facet::facet_range_search::tests::random_looking_index_snap ... ok
test search::facet::facet_sort_ascending::tests::filter_sort ... ok
test search::facet::facet_sort_descending::tests::filter_sort_descending ... ok
test search::facet::filter::tests::empty_db ... FAILED
test search::facet::filter::tests::empty_filter ... ok
test search::facet::filter::tests::escaped_quote_in_filter_value_2380 ... FAILED
test search::facet::facet_range_search::tests::filter_range_pinch ... ok
test search::facet::filter::tests::from_array ... ok
test search::facet::filter::tests::geo_radius_error ... FAILED
test search::facet::filter::tests::not_filterable ... FAILED
test search::matches::matching_words::tests::matching_words ... ok
test search::matches::matching_words::tests::test_bytes_to_highlight ... ok
test search::matches::tests::format_crop ... ok
test search::matches::tests::format_highlight ... ok
test search::matches::tests::format_highlight_crop ... ok
test search::matches::tests::format_identity ... ok
test search::matches::tests::highlight_unicode ... ok
test search::matches::tests::partial_matches ... ok
test search::matches::tests::smaller_crop_size ... ok
test search::facet::facet_range_search::tests::filter_range_decreasing ... ok
test search::facet::facet_range_search::tests::filter_range_increasing ... ok
test search::query_tree::test::complex_synonyms ... ok
test search::query_tree::test::disable_typo_on_word ... ok
test search::query_tree::test::ngrams ... ok
test search::facet::filter::tests::filter_depth ... ok
test search::query_tree::test::no_prefix ... ok
test search::query_tree::test::no_typo ... ok
test search::query_tree::test::optional_word ... ok
test search::query_tree::test::optional_word_multiple_phrases ... ok
test search::query_tree::test::optional_word_phrase ... ok
test search::query_tree::test::phrase ... ok
test search::query_tree::test::phrase_2 ... ok
test search::query_tree::test::test_min_word_len_typo ... ok
test search::query_tree::test::phrase_with_hard_separator ... ok
test search::query_tree::test::prefix ... ok
test search::query_tree::test::synonyms ... ok
test search::test::test_bad_prefix ... ok
test search::test::test_is_authorized_typos ... FAILED
test search::test::test_one_typos_first_letter ... ok
test search::test::test_one_typos_tolerance ... ok
test search::test::test_prefix ... ok
test search::test::test_prefix_with_typo ... ok
test search::query_tree::test::word_split ... ok
test search::test::test_two_typos_first_letter ... ok
test search::test::test_two_typos_tolerance ... ok
test tests::json_to_string_object ... ok
test tests::json_to_string_array ... ok
test tests::test_relative_position_conversion ... ok
test tests::test_absolute_position_conversion ... ok
test update::available_documents_ids::tests::scattered ... ok
test update::available_documents_ids::tests::empty ... ok
test update::clear_documents::tests::clear_documents ... FAILED
test update::available_documents_ids::tests::soft_deleted ... ok
test update::delete_documents::tests::delete_documents_with_strange_primary_key ... FAILED
test update::delete_documents::tests::delete_documents_with_numbers_as_primary_key ... FAILED
test update::delete_documents::tests::filtered_placeholder_search_should_not_return_deleted_documents ... FAILED
test update::delete_documents::tests::geo_filtered_placeholder_search_should_not_return_deleted_documents ... FAILED
test update::delete_documents::tests::get_documents_should_not_return_deleted_documents ... FAILED
test update::delete_documents::tests::search_should_not_return_deleted_documents ... FAILED
test update::delete_documents::tests::placeholder_search_should_not_return_deleted_documents ... FAILED
test update::delete_documents::tests::stats_should_not_return_deleted_documents ... FAILED
test search::query_tree::test::word_split_choose_pair_with_max_freq ... ok
test search::query_tree::test::words_limit ... ok
test update::facet::delete::tests::delete_mixed_incremental_and_bulk ... FAILED
test update::facet::incremental::tests::append ... ok
test update::facet::bulk::tests::insert_delete_field_insert ... ok
test update::facet::bulk::tests::insert ... ok
test update::facet::incremental::tests::in_place_level0_delete ... ok
test update::facet::incremental::tests::in_place_level0_insert ... ok
test update::facet::incremental::tests::many_field_ids_append ... ok
test update::facet::incremental::tests::delete_from_start ... ok
test update::facet::incremental::tests::many_field_ids_prepend ... ok
test update::facet::incremental::tests::prepend ... ok
test update::facet::incremental::tests::shuffle_merge_string_and_delete ... ok
test update::facet::incremental::tests::shuffled ... ok
test update::index_documents::tests::complex_documents ... FAILED
test update::index_documents::tests::delete_documents_then_insert ... FAILED
test update::index_documents::tests::empty_update ... FAILED
test update::index_documents::tests::geo_error ... FAILED
test update::index_documents::tests::index_2_times_documents_split_by_zero_document_indexation ... FAILED
test update::index_documents::tests::index_all_flavour_of_geo ... FAILED
test update::index_documents::tests::index_documents_check_exists_database ... FAILED
test update::index_documents::tests::index_documents_in_multiple_transforms ... FAILED
test update::index_documents::tests::index_documents_with_nested_fields ... FAILED
test update::index_documents::tests::index_documents_with_nested_primary_key ... FAILED
test update::index_documents::tests::index_documents_with_zeroes ... FAILED
test update::index_documents::tests::index_more_than_1000_positions_in_a_field ... FAILED
test update::index_documents::tests::index_more_than_256_fields ... FAILED
test update::index_documents::tests::invalid_documents_ids ... FAILED
test update::index_documents::tests::long_words_must_be_skipped ... FAILED
test update::index_documents::tests::mixed_geo_documents ... FAILED
test update::index_documents::tests::not_auto_generated_documents_ids ... FAILED
test update::index_documents::tests::primary_key_must_not_contain_floats ... FAILED
test update::index_documents::tests::primary_key_must_not_contain_whitespace ... FAILED
test update::index_documents::tests::reordered_auto_generated_documents_ids ... FAILED
test update::index_documents::tests::retrieve_a_b_c_nested_document_id ... FAILED
test update::index_documents::tests::retrieve_a_b_nested_document_id ... FAILED
test update::index_documents::tests::simple_auto_generated_documents_ids ... FAILED
test update::index_documents::tests::simple_document_merge ... FAILED
test update::index_documents::tests::simple_document_replacement ... FAILED
test update::index_documents::tests::simple_documents_replace ... FAILED
test update::index_documents::tests::test_facets_generation ... FAILED
test update::index_documents::tests::test_meilisearch_1714 ... FAILED
test update::index_documents::tests::text_with_too_long_keys ... FAILED
test update::index_documents::tests::text_with_too_long_words ... FAILED
test update::prefix_word_pairs::tests::test_update ... FAILED
test update::prefix_word_pairs::word_prefix::tests::test_execute_on_word_pairs_and_prefixes ... ok
test update::prefix_word_pairs::word_prefix::tests::test_trie ... ok
test update::settings::tests::default_displayed_fields ... FAILED
test update::settings::tests::default_stop_words ... FAILED
test update::settings::tests::mixup_searchable_with_displayed_fields ... FAILED
test update::settings::tests::set_and_reset_displayed_field ... FAILED
test update::settings::tests::set_and_reset_searchable_fields ... FAILED
test update::settings::tests::set_and_reset_stop_words ... FAILED
test update::settings::tests::set_and_reset_synonyms ... FAILED
test update::settings::tests::set_asc_desc_field ... FAILED
test update::settings::tests::set_distinct_field ... FAILED
test update::settings::tests::set_filterable_fields ... FAILED
test update::settings::tests::set_nested_distinct_field ... FAILED
test update::settings::tests::setting_impact_relevancy ... FAILED
test update::settings::tests::setting_not_filterable_cant_filter ... FAILED
test update::settings::tests::setting_primary_key ... FAILED
test update::settings::tests::setting_searchable_recomputes_other_settings ... FAILED
test update::settings::tests::test_correct_settings_init ... FAILED
test update::settings::tests::test_disable_typo ... FAILED
test update::settings::tests::update_exact_words_normalization ... FAILED
test update::settings::tests::update_invalid_min_word_len_for_typo ... FAILED
test update::settings::tests::update_min_word_len_for_typo ... FAILED
test update::facet::incremental::tests::delete_from_end ... ok
test update::facet::incremental::tests::delete_shuffled ... ok
test update::facet::incremental::tests::merge_values ... ok

failures:

---- index::tests::aborting_indexation stdout ----
thread 'index::tests::aborting_indexation' panicked at 'called `Result::unwrap()` on an `Err` value: IoError(Os { code: 22, kind: InvalidInput, message: "Invalid argument" })', milli/src/index.rs:1217:62
note: run with `RUST_BACKTRACE=1` environment variable to display a backtrace

---- index::tests::add_documents_and_set_searchable_fields stdout ----
thread 'index::tests::add_documents_and_set_searchable_fields' panicked at 'called `Result::unwrap()` on an `Err` value: IoError(Os { code: 22, kind: InvalidInput, message: "Invalid argument" })', milli/src/index.rs:1217:62

---- index::tests::initial_field_distribution stdout ----
thread 'index::tests::initial_field_distribution' panicked at 'called `Result::unwrap()` on an `Err` value: IoError(Os { code: 22, kind: InvalidInput, message: "Invalid argument" })', milli/src/index.rs:1217:62

---- index::tests::put_and_retrieve_disable_typo stdout ----
thread 'index::tests::put_and_retrieve_disable_typo' panicked at 'called `Result::unwrap()` on an `Err` value: IoError(Os { code: 22, kind: InvalidInput, message: "Invalid argument" })', milli/src/index.rs:1217:62

---- index::tests::set_min_word_len_for_typos stdout ----
thread 'index::tests::set_min_word_len_for_typos' panicked at 'called `Result::unwrap()` on an `Err` value: IoError(Os { code: 22, kind: InvalidInput, message: "Invalid argument" })', milli/src/index.rs:1217:62

---- index::tests::set_searchable_fields_and_add_documents stdout ----
thread 'index::tests::set_searchable_fields_and_add_documents' panicked at 'called `Result::unwrap()` on an `Err` value: IoError(Os { code: 22, kind: InvalidInput, message: "Invalid argument" })', milli/src/index.rs:1217:62

---- search::distinct::facet_distinct::test::test_number stdout ----
thread 'search::distinct::facet_distinct::test::test_number' panicked at 'called `Result::unwrap()` on an `Err` value: IoError(Os { code: 22, kind: InvalidInput, message: "Invalid argument" })', milli/src/index.rs:1217:62

---- search::distinct::facet_distinct::test::test_string stdout ----
thread 'search::distinct::facet_distinct::test::test_string' panicked at 'called `Result::unwrap()` on an `Err` value: IoError(Os { code: 22, kind: InvalidInput, message: "Invalid argument" })', milli/src/index.rs:1217:62

---- search::distinct::facet_distinct::test::test_strings stdout ----
thread 'search::distinct::facet_distinct::test::test_strings' panicked at 'called `Result::unwrap()` on an `Err` value: IoError(Os { code: 22, kind: InvalidInput, message: "Invalid argument" })', milli/src/index.rs:1217:62

---- search::facet::facet_distribution::tests::few_candidates_few_facet_values stdout ----
thread 'search::facet::facet_distribution::tests::few_candidates_few_facet_values' panicked at 'called `Result::unwrap()` on an `Err` value: IoError(Os { code: 22, kind: InvalidInput, message: "Invalid argument" })', milli/src/index.rs:1217:62

---- search::facet::facet_distribution::tests::many_candidates_many_facet_values stdout ----
thread 'search::facet::facet_distribution::tests::many_candidates_many_facet_values' panicked at 'called `Result::unwrap()` on an `Err` value: IoError(Os { code: 22, kind: InvalidInput, message: "Invalid argument" })', milli/src/index.rs:1217:62

---- search::facet::facet_distribution::tests::many_candidates_few_facet_values stdout ----
thread 'search::facet::facet_distribution::tests::many_candidates_few_facet_values' panicked at 'called `Result::unwrap()` on an `Err` value: IoError(Os { code: 22, kind: InvalidInput, message: "Invalid argument" })', milli/src/index.rs:1217:62

---- search::facet::filter::tests::empty_db stdout ----
thread 'search::facet::filter::tests::empty_db' panicked at 'called `Result::unwrap()` on an `Err` value: IoError(Os { code: 22, kind: InvalidInput, message: "Invalid argument" })', milli/src/index.rs:1217:62

---- search::facet::filter::tests::escaped_quote_in_filter_value_2380 stdout ----
thread 'search::facet::filter::tests::escaped_quote_in_filter_value_2380' panicked at 'called `Result::unwrap()` on an `Err` value: IoError(Os { code: 22, kind: InvalidInput, message: "Invalid argument" })', milli/src/index.rs:1217:62

---- search::facet::filter::tests::geo_radius_error stdout ----
thread 'search::facet::filter::tests::geo_radius_error' panicked at 'called `Result::unwrap()` on an `Err` value: IoError(Os { code: 22, kind: InvalidInput, message: "Invalid argument" })', milli/src/index.rs:1217:62

---- search::facet::filter::tests::not_filterable stdout ----
thread 'search::facet::filter::tests::not_filterable' panicked at 'called `Result::unwrap()` on an `Err` value: IoError(Os { code: 22, kind: InvalidInput, message: "Invalid argument" })', milli/src/index.rs:1217:62

---- search::test::test_is_authorized_typos stdout ----
thread 'search::test::test_is_authorized_typos' panicked at 'called `Result::unwrap()` on an `Err` value: IoError(Os { code: 22, kind: InvalidInput, message: "Invalid argument" })', milli/src/index.rs:1217:62

---- update::clear_documents::tests::clear_documents stdout ----
thread 'update::clear_documents::tests::clear_documents' panicked at 'called `Result::unwrap()` on an `Err` value: IoError(Os { code: 22, kind: InvalidInput, message: "Invalid argument" })', milli/src/index.rs:1217:62

---- update::delete_documents::tests::delete_documents_with_strange_primary_key stdout ----
thread 'update::delete_documents::tests::delete_documents_with_strange_primary_key' panicked at 'called `Result::unwrap()` on an `Err` value: IoError(Os { code: 22, kind: InvalidInput, message: "Invalid argument" })', milli/src/index.rs:1217:62

---- update::delete_documents::tests::delete_documents_with_numbers_as_primary_key stdout ----
thread 'update::delete_documents::tests::delete_documents_with_numbers_as_primary_key' panicked at 'called `Result::unwrap()` on an `Err` value: IoError(Os { code: 22, kind: InvalidInput, message: "Invalid argument" })', milli/src/index.rs:1217:62

---- update::delete_documents::tests::filtered_placeholder_search_should_not_return_deleted_documents stdout ----
thread 'update::delete_documents::tests::filtered_placeholder_search_should_not_return_deleted_documents' panicked at 'called `Result::unwrap()` on an `Err` value: IoError(Os { code: 22, kind: InvalidInput, message: "Invalid argument" })', milli/src/index.rs:1217:62

---- update::delete_documents::tests::geo_filtered_placeholder_search_should_not_return_deleted_documents stdout ----
thread 'update::delete_documents::tests::geo_filtered_placeholder_search_should_not_return_deleted_documents' panicked at 'called `Result::unwrap()` on an `Err` value: IoError(Os { code: 22, kind: InvalidInput, message: "Invalid argument" })', milli/src/index.rs:1217:62

---- update::delete_documents::tests::get_documents_should_not_return_deleted_documents stdout ----
thread 'update::delete_documents::tests::get_documents_should_not_return_deleted_documents' panicked at 'called `Result::unwrap()` on an `Err` value: IoError(Os { code: 22, kind: InvalidInput, message: "Invalid argument" })', milli/src/index.rs:1217:62

---- update::delete_documents::tests::search_should_not_return_deleted_documents stdout ----
thread 'update::delete_documents::tests::search_should_not_return_deleted_documents' panicked at 'called `Result::unwrap()` on an `Err` value: IoError(Os { code: 22, kind: InvalidInput, message: "Invalid argument" })', milli/src/index.rs:1217:62

---- update::delete_documents::tests::placeholder_search_should_not_return_deleted_documents stdout ----
thread 'update::delete_documents::tests::placeholder_search_should_not_return_deleted_documents' panicked at 'called `Result::unwrap()` on an `Err` value: IoError(Os { code: 22, kind: InvalidInput, message: "Invalid argument" })', milli/src/index.rs:1217:62

---- update::delete_documents::tests::stats_should_not_return_deleted_documents stdout ----
thread 'update::delete_documents::tests::stats_should_not_return_deleted_documents' panicked at 'called `Result::unwrap()` on an `Err` value: IoError(Os { code: 22, kind: InvalidInput, message: "Invalid argument" })', milli/src/index.rs:1217:62

---- update::facet::delete::tests::delete_mixed_incremental_and_bulk stdout ----
thread 'update::facet::delete::tests::delete_mixed_incremental_and_bulk' panicked at 'called `Result::unwrap()` on an `Err` value: IoError(Os { code: 22, kind: InvalidInput, message: "Invalid argument" })', milli/src/index.rs:1217:62

---- update::index_documents::tests::complex_documents stdout ----
thread 'update::index_documents::tests::complex_documents' panicked at 'called `Result::unwrap()` on an `Err` value: IoError(Os { code: 22, kind: InvalidInput, message: "Invalid argument" })', milli/src/index.rs:1217:62

---- update::index_documents::tests::delete_documents_then_insert stdout ----
thread 'update::index_documents::tests::delete_documents_then_insert' panicked at 'called `Result::unwrap()` on an `Err` value: IoError(Os { code: 22, kind: InvalidInput, message: "Invalid argument" })', milli/src/index.rs:1217:62

---- update::index_documents::tests::empty_update stdout ----
thread 'update::index_documents::tests::empty_update' panicked at 'called `Result::unwrap()` on an `Err` value: IoError(Os { code: 22, kind: InvalidInput, message: "Invalid argument" })', milli/src/index.rs:1217:62

---- update::index_documents::tests::geo_error stdout ----
thread 'update::index_documents::tests::geo_error' panicked at 'called `Result::unwrap()` on an `Err` value: IoError(Os { code: 22, kind: InvalidInput, message: "Invalid argument" })', milli/src/index.rs:1217:62

---- update::index_documents::tests::index_2_times_documents_split_by_zero_document_indexation stdout ----
thread 'update::index_documents::tests::index_2_times_documents_split_by_zero_document_indexation' panicked at 'called `Result::unwrap()` on an `Err` value: IoError(Os { code: 22, kind: InvalidInput, message: "Invalid argument" })', milli/src/index.rs:1217:62

---- update::index_documents::tests::index_all_flavour_of_geo stdout ----
thread 'update::index_documents::tests::index_all_flavour_of_geo' panicked at 'called `Result::unwrap()` on an `Err` value: IoError(Os { code: 22, kind: InvalidInput, message: "Invalid argument" })', milli/src/index.rs:1217:62

---- update::index_documents::tests::index_documents_check_exists_database stdout ----
thread 'update::index_documents::tests::index_documents_check_exists_database' panicked at 'called `Result::unwrap()` on an `Err` value: IoError(Os { code: 22, kind: InvalidInput, message: "Invalid argument" })', milli/src/index.rs:1217:62

---- update::index_documents::tests::index_documents_in_multiple_transforms stdout ----
thread 'update::index_documents::tests::index_documents_in_multiple_transforms' panicked at 'called `Result::unwrap()` on an `Err` value: IoError(Os { code: 22, kind: InvalidInput, message: "Invalid argument" })', milli/src/index.rs:1217:62

---- update::index_documents::tests::index_documents_with_nested_fields stdout ----
thread 'update::index_documents::tests::index_documents_with_nested_fields' panicked at 'called `Result::unwrap()` on an `Err` value: IoError(Os { code: 22, kind: InvalidInput, message: "Invalid argument" })', milli/src/index.rs:1217:62

---- update::index_documents::tests::index_documents_with_nested_primary_key stdout ----
thread 'update::index_documents::tests::index_documents_with_nested_primary_key' panicked at 'called `Result::unwrap()` on an `Err` value: IoError(Os { code: 22, kind: InvalidInput, message: "Invalid argument" })', milli/src/index.rs:1217:62

---- update::index_documents::tests::index_documents_with_zeroes stdout ----
thread 'update::index_documents::tests::index_documents_with_zeroes' panicked at 'called `Result::unwrap()` on an `Err` value: IoError(Os { code: 22, kind: InvalidInput, message: "Invalid argument" })', milli/src/index.rs:1217:62

---- update::index_documents::tests::index_more_than_1000_positions_in_a_field stdout ----
thread 'update::index_documents::tests::index_more_than_1000_positions_in_a_field' panicked at 'called `Result::unwrap()` on an `Err` value: IoError(Os { code: 22, kind: InvalidInput, message: "Invalid argument" })', milli/src/index.rs:1217:62

---- update::index_documents::tests::index_more_than_256_fields stdout ----
thread 'update::index_documents::tests::index_more_than_256_fields' panicked at 'called `Result::unwrap()` on an `Err` value: IoError(Os { code: 22, kind: InvalidInput, message: "Invalid argument" })', milli/src/index.rs:1217:62

---- update::index_documents::tests::invalid_documents_ids stdout ----
thread 'update::index_documents::tests::invalid_documents_ids' panicked at 'called `Result::unwrap()` on an `Err` value: IoError(Os { code: 22, kind: InvalidInput, message: "Invalid argument" })', milli/src/index.rs:1217:62

---- update::index_documents::tests::long_words_must_be_skipped stdout ----
thread 'update::index_documents::tests::long_words_must_be_skipped' panicked at 'called `Result::unwrap()` on an `Err` value: IoError(Os { code: 22, kind: InvalidInput, message: "Invalid argument" })', milli/src/index.rs:1217:62

---- update::index_documents::tests::mixed_geo_documents stdout ----
thread 'update::index_documents::tests::mixed_geo_documents' panicked at 'called `Result::unwrap()` on an `Err` value: IoError(Os { code: 22, kind: InvalidInput, message: "Invalid argument" })', milli/src/index.rs:1217:62

---- update::index_documents::tests::not_auto_generated_documents_ids stdout ----
thread 'update::index_documents::tests::not_auto_generated_documents_ids' panicked at 'called `Result::unwrap()` on an `Err` value: IoError(Os { code: 22, kind: InvalidInput, message: "Invalid argument" })', milli/src/index.rs:1217:62

---- update::index_documents::tests::primary_key_must_not_contain_floats stdout ----
thread 'update::index_documents::tests::primary_key_must_not_contain_floats' panicked at 'called `Result::unwrap()` on an `Err` value: IoError(Os { code: 22, kind: InvalidInput, message: "Invalid argument" })', milli/src/index.rs:1217:62

---- update::index_documents::tests::primary_key_must_not_contain_whitespace stdout ----
thread 'update::index_documents::tests::primary_key_must_not_contain_whitespace' panicked at 'called `Result::unwrap()` on an `Err` value: IoError(Os { code: 22, kind: InvalidInput, message: "Invalid argument" })', milli/src/index.rs:1217:62

---- update::index_documents::tests::reordered_auto_generated_documents_ids stdout ----
thread 'update::index_documents::tests::reordered_auto_generated_documents_ids' panicked at 'called `Result::unwrap()` on an `Err` value: IoError(Os { code: 22, kind: InvalidInput, message: "Invalid argument" })', milli/src/index.rs:1217:62

---- update::index_documents::tests::retrieve_a_b_c_nested_document_id stdout ----
thread 'update::index_documents::tests::retrieve_a_b_c_nested_document_id' panicked at 'called `Result::unwrap()` on an `Err` value: IoError(Os { code: 22, kind: InvalidInput, message: "Invalid argument" })', milli/src/index.rs:1217:62

---- update::index_documents::tests::retrieve_a_b_nested_document_id stdout ----
thread 'update::index_documents::tests::retrieve_a_b_nested_document_id' panicked at 'called `Result::unwrap()` on an `Err` value: IoError(Os { code: 22, kind: InvalidInput, message: "Invalid argument" })', milli/src/index.rs:1217:62

---- update::index_documents::tests::simple_auto_generated_documents_ids stdout ----
thread 'update::index_documents::tests::simple_auto_generated_documents_ids' panicked at 'called `Result::unwrap()` on an `Err` value: IoError(Os { code: 22, kind: InvalidInput, message: "Invalid argument" })', milli/src/index.rs:1217:62

---- update::index_documents::tests::simple_document_merge stdout ----
thread 'update::index_documents::tests::simple_document_merge' panicked at 'called `Result::unwrap()` on an `Err` value: IoError(Os { code: 22, kind: InvalidInput, message: "Invalid argument" })', milli/src/index.rs:1217:62

---- update::index_documents::tests::simple_document_replacement stdout ----
thread 'update::index_documents::tests::simple_document_replacement' panicked at 'called `Result::unwrap()` on an `Err` value: IoError(Os { code: 22, kind: InvalidInput, message: "Invalid argument" })', milli/src/index.rs:1217:62

---- update::index_documents::tests::simple_documents_replace stdout ----
thread 'update::index_documents::tests::simple_documents_replace' panicked at 'called `Result::unwrap()` on an `Err` value: IoError(Os { code: 22, kind: InvalidInput, message: "Invalid argument" })', milli/src/index.rs:1217:62

---- update::index_documents::tests::test_facets_generation stdout ----
thread 'update::index_documents::tests::test_facets_generation' panicked at 'called `Result::unwrap()` on an `Err` value: IoError(Os { code: 22, kind: InvalidInput, message: "Invalid argument" })', milli/src/index.rs:1217:62

---- update::index_documents::tests::test_meilisearch_1714 stdout ----
thread 'update::index_documents::tests::test_meilisearch_1714' panicked at 'called `Result::unwrap()` on an `Err` value: IoError(Os { code: 22, kind: InvalidInput, message: "Invalid argument" })', milli/src/index.rs:1217:62

---- update::index_documents::tests::text_with_too_long_keys stdout ----
thread 'update::index_documents::tests::text_with_too_long_keys' panicked at 'called `Result::unwrap()` on an `Err` value: IoError(Os { code: 22, kind: InvalidInput, message: "Invalid argument" })', milli/src/index.rs:1217:62

---- update::index_documents::tests::text_with_too_long_words stdout ----
thread 'update::index_documents::tests::text_with_too_long_words' panicked at 'called `Result::unwrap()` on an `Err` value: IoError(Os { code: 22, kind: InvalidInput, message: "Invalid argument" })', milli/src/index.rs:1217:62

---- update::prefix_word_pairs::tests::test_update stdout ----
thread 'update::prefix_word_pairs::tests::test_update' panicked at 'called `Result::unwrap()` on an `Err` value: IoError(Os { code: 22, kind: InvalidInput, message: "Invalid argument" })', milli/src/index.rs:1217:62

---- update::settings::tests::default_displayed_fields stdout ----
thread 'update::settings::tests::default_displayed_fields' panicked at 'called `Result::unwrap()` on an `Err` value: IoError(Os { code: 22, kind: InvalidInput, message: "Invalid argument" })', milli/src/index.rs:1217:62

---- update::settings::tests::default_stop_words stdout ----
thread 'update::settings::tests::default_stop_words' panicked at 'called `Result::unwrap()` on an `Err` value: IoError(Os { code: 22, kind: InvalidInput, message: "Invalid argument" })', milli/src/index.rs:1217:62

---- update::settings::tests::mixup_searchable_with_displayed_fields stdout ----
thread 'update::settings::tests::mixup_searchable_with_displayed_fields' panicked at 'called `Result::unwrap()` on an `Err` value: IoError(Os { code: 22, kind: InvalidInput, message: "Invalid argument" })', milli/src/index.rs:1217:62

---- update::settings::tests::set_and_reset_displayed_field stdout ----
thread 'update::settings::tests::set_and_reset_displayed_field' panicked at 'called `Result::unwrap()` on an `Err` value: IoError(Os { code: 22, kind: InvalidInput, message: "Invalid argument" })', milli/src/index.rs:1217:62

---- update::settings::tests::set_and_reset_searchable_fields stdout ----
thread 'update::settings::tests::set_and_reset_searchable_fields' panicked at 'called `Result::unwrap()` on an `Err` value: IoError(Os { code: 22, kind: InvalidInput, message: "Invalid argument" })', milli/src/index.rs:1217:62

---- update::settings::tests::set_and_reset_stop_words stdout ----
thread 'update::settings::tests::set_and_reset_stop_words' panicked at 'called `Result::unwrap()` on an `Err` value: IoError(Os { code: 22, kind: InvalidInput, message: "Invalid argument" })', milli/src/index.rs:1217:62

---- update::settings::tests::set_and_reset_synonyms stdout ----
thread 'update::settings::tests::set_and_reset_synonyms' panicked at 'called `Result::unwrap()` on an `Err` value: IoError(Os { code: 22, kind: InvalidInput, message: "Invalid argument" })', milli/src/index.rs:1217:62

---- update::settings::tests::set_asc_desc_field stdout ----
thread 'update::settings::tests::set_asc_desc_field' panicked at 'called `Result::unwrap()` on an `Err` value: IoError(Os { code: 22, kind: InvalidInput, message: "Invalid argument" })', milli/src/index.rs:1217:62

---- update::settings::tests::set_distinct_field stdout ----
thread 'update::settings::tests::set_distinct_field' panicked at 'called `Result::unwrap()` on an `Err` value: IoError(Os { code: 22, kind: InvalidInput, message: "Invalid argument" })', milli/src/index.rs:1217:62

---- update::settings::tests::set_filterable_fields stdout ----
thread 'update::settings::tests::set_filterable_fields' panicked at 'called `Result::unwrap()` on an `Err` value: IoError(Os { code: 22, kind: InvalidInput, message: "Invalid argument" })', milli/src/index.rs:1217:62

---- update::settings::tests::set_nested_distinct_field stdout ----
thread 'update::settings::tests::set_nested_distinct_field' panicked at 'called `Result::unwrap()` on an `Err` value: IoError(Os { code: 22, kind: InvalidInput, message: "Invalid argument" })', milli/src/index.rs:1217:62

---- update::settings::tests::setting_impact_relevancy stdout ----
thread 'update::settings::tests::setting_impact_relevancy' panicked at 'called `Result::unwrap()` on an `Err` value: IoError(Os { code: 22, kind: InvalidInput, message: "Invalid argument" })', milli/src/index.rs:1217:62

---- update::settings::tests::setting_not_filterable_cant_filter stdout ----
thread 'update::settings::tests::setting_not_filterable_cant_filter' panicked at 'called `Result::unwrap()` on an `Err` value: IoError(Os { code: 22, kind: InvalidInput, message: "Invalid argument" })', milli/src/index.rs:1217:62

---- update::settings::tests::setting_primary_key stdout ----
thread 'update::settings::tests::setting_primary_key' panicked at 'called `Result::unwrap()` on an `Err` value: IoError(Os { code: 22, kind: InvalidInput, message: "Invalid argument" })', milli/src/index.rs:1217:62

---- update::settings::tests::setting_searchable_recomputes_other_settings stdout ----
thread 'update::settings::tests::setting_searchable_recomputes_other_settings' panicked at 'called `Result::unwrap()` on an `Err` value: IoError(Os { code: 22, kind: InvalidInput, message: "Invalid argument" })', milli/src/index.rs:1217:62

---- update::settings::tests::test_correct_settings_init stdout ----
thread 'update::settings::tests::test_correct_settings_init' panicked at 'called `Result::unwrap()` on an `Err` value: IoError(Os { code: 22, kind: InvalidInput, message: "Invalid argument" })', milli/src/index.rs:1217:62

---- update::settings::tests::test_disable_typo stdout ----
thread 'update::settings::tests::test_disable_typo' panicked at 'called `Result::unwrap()` on an `Err` value: IoError(Os { code: 22, kind: InvalidInput, message: "Invalid argument" })', milli/src/index.rs:1217:62

---- update::settings::tests::update_exact_words_normalization stdout ----
thread 'update::settings::tests::update_exact_words_normalization' panicked at 'called `Result::unwrap()` on an `Err` value: IoError(Os { code: 22, kind: InvalidInput, message: "Invalid argument" })', milli/src/index.rs:1217:62

---- update::settings::tests::update_invalid_min_word_len_for_typo stdout ----
thread 'update::settings::tests::update_invalid_min_word_len_for_typo' panicked at 'called `Result::unwrap()` on an `Err` value: IoError(Os { code: 22, kind: InvalidInput, message: "Invalid argument" })', milli/src/index.rs:1217:62

---- update::settings::tests::update_min_word_len_for_typo stdout ----
thread 'update::settings::tests::update_min_word_len_for_typo' panicked at 'called `Result::unwrap()` on an `Err` value: IoError(Os { code: 22, kind: InvalidInput, message: "Invalid argument" })', milli/src/index.rs:1217:62


failures:
    index::tests::aborting_indexation
    index::tests::add_documents_and_set_searchable_fields
    index::tests::initial_field_distribution
    index::tests::put_and_retrieve_disable_typo
    index::tests::set_min_word_len_for_typos
    index::tests::set_searchable_fields_and_add_documents
    search::distinct::facet_distinct::test::test_number
    search::distinct::facet_distinct::test::test_string
    search::distinct::facet_distinct::test::test_strings
    search::facet::facet_distribution::tests::few_candidates_few_facet_values
    search::facet::facet_distribution::tests::many_candidates_few_facet_values
    search::facet::facet_distribution::tests::many_candidates_many_facet_values
    search::facet::filter::tests::empty_db
    search::facet::filter::tests::escaped_quote_in_filter_value_2380
    search::facet::filter::tests::geo_radius_error
    search::facet::filter::tests::not_filterable
    search::test::test_is_authorized_typos
    update::clear_documents::tests::clear_documents
    update::delete_documents::tests::delete_documents_with_numbers_as_primary_key
    update::delete_documents::tests::delete_documents_with_strange_primary_key
    update::delete_documents::tests::filtered_placeholder_search_should_not_return_deleted_documents
    update::delete_documents::tests::geo_filtered_placeholder_search_should_not_return_deleted_documents
    update::delete_documents::tests::get_documents_should_not_return_deleted_documents
    update::delete_documents::tests::placeholder_search_should_not_return_deleted_documents
    update::delete_documents::tests::search_should_not_return_deleted_documents
    update::delete_documents::tests::stats_should_not_return_deleted_documents
    update::facet::delete::tests::delete_mixed_incremental_and_bulk
    update::index_documents::tests::complex_documents
    update::index_documents::tests::delete_documents_then_insert
    update::index_documents::tests::empty_update
    update::index_documents::tests::geo_error
    update::index_documents::tests::index_2_times_documents_split_by_zero_document_indexation
    update::index_documents::tests::index_all_flavour_of_geo
    update::index_documents::tests::index_documents_check_exists_database
    update::index_documents::tests::index_documents_in_multiple_transforms
    update::index_documents::tests::index_documents_with_nested_fields
    update::index_documents::tests::index_documents_with_nested_primary_key
    update::index_documents::tests::index_documents_with_zeroes
    update::index_documents::tests::index_more_than_1000_positions_in_a_field
    update::index_documents::tests::index_more_than_256_fields
    update::index_documents::tests::invalid_documents_ids
    update::index_documents::tests::long_words_must_be_skipped
    update::index_documents::tests::mixed_geo_documents
    update::index_documents::tests::not_auto_generated_documents_ids
    update::index_documents::tests::primary_key_must_not_contain_floats
    update::index_documents::tests::primary_key_must_not_contain_whitespace
    update::index_documents::tests::reordered_auto_generated_documents_ids
    update::index_documents::tests::retrieve_a_b_c_nested_document_id
    update::index_documents::tests::retrieve_a_b_nested_document_id
    update::index_documents::tests::simple_auto_generated_documents_ids
    update::index_documents::tests::simple_document_merge
    update::index_documents::tests::simple_document_replacement
    update::index_documents::tests::simple_documents_replace
    update::index_documents::tests::test_facets_generation
    update::index_documents::tests::test_meilisearch_1714
    update::index_documents::tests::text_with_too_long_keys
    update::index_documents::tests::text_with_too_long_words
    update::prefix_word_pairs::tests::test_update
    update::settings::tests::default_displayed_fields
    update::settings::tests::default_stop_words
    update::settings::tests::mixup_searchable_with_displayed_fields
    update::settings::tests::set_and_reset_displayed_field
    update::settings::tests::set_and_reset_searchable_fields
    update::settings::tests::set_and_reset_stop_words
    update::settings::tests::set_and_reset_synonyms
    update::settings::tests::set_asc_desc_field
    update::settings::tests::set_distinct_field
    update::settings::tests::set_filterable_fields
    update::settings::tests::set_nested_distinct_field
    update::settings::tests::setting_impact_relevancy
    update::settings::tests::setting_not_filterable_cant_filter
    update::settings::tests::setting_primary_key
    update::settings::tests::setting_searchable_recomputes_other_settings
    update::settings::tests::test_correct_settings_init
    update::settings::tests::test_disable_typo
    update::settings::tests::update_exact_words_normalization
    update::settings::tests::update_invalid_min_word_len_for_typo
    update::settings::tests::update_min_word_len_for_typo

test result: FAILED. 104 passed; 78 failed; 1 ignored; 0 measured; 0 filtered out; finished in 2.89s

error: test failed, to rerun pass '--lib'

My OS is Garuda Linux (a flavor of Archlinux).

CPU info (`lscpu`):
Architecture:            x86_64
  CPU op-mode(s):        32-bit, 64-bit
  Address sizes:         39 bits physical, 48 bits virtual
  Byte Order:            Little Endian
CPU(s):                  4
  On-line CPU(s) list:   0-3
Vendor ID:               GenuineIntel
  Model name:            Intel(R) Core(TM) i3-1005G1 CPU @ 1.20GHz
    CPU family:          6
    Model:               126
    Thread(s) per core:  2
    Core(s) per socket:  2
    Socket(s):           1
    Stepping:            5
    CPU(s) scaling MHz:  38%
    CPU max MHz:         3400,0000
    CPU min MHz:         400,0000
    BogoMIPS:            2380,80
    Flags:               fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology 
                         nonstop_tsc cpuid aperfmperf tsc_known_freq pni pclmulqdq dtes64 monitor ds_cpl vmx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_l
                         m abm 3dnowprefetch cpuid_fault epb invpcid_single ssbd ibrs ibpb stibp ibrs_enhanced tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 avx2 smep bmi2 erms invpcid avx512f avx512dq rdseed adx 
                         smap avx512ifma clflushopt intel_pt avx512cd sha_ni avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves split_lock_detect dtherm ida arat pln pts hwp hwp_notify hwp_act_window hwp_epp hwp_pkg_req avx512vbmi umip pku
                          ospke avx512_vbmi2 gfni vaes vpclmulqdq avx512_vnni avx512_bitalg avx512_vpopcntdq rdpid fsrm md_clear flush_l1d arch_capabilities
Virtualization features: 
  Virtualization:        VT-x
Caches (sum of all):     
  L1d:                   96 KiB (2 instances)
  L1i:                   64 KiB (2 instances)
  L2:                    1 MiB (2 instances)
  L3:                    4 MiB (1 instance)
NUMA:                    
  NUMA node(s):          1
  NUMA node0 CPU(s):     0-3
Vulnerabilities:         
  Itlb multihit:         KVM: Mitigation: VMX disabled
  L1tf:                  Not affected
  Mds:                   Not affected
  Meltdown:              Not affected
  Mmio stale data:       Mitigation; Clear CPU buffers; SMT vulnerable
  Retbleed:              Mitigation; Enhanced IBRS
  Spec store bypass:     Mitigation; Speculative Store Bypass disabled via prctl and seccomp
  Spectre v1:            Mitigation; usercopy/swapgs barriers and __user pointer sanitization
  Spectre v2:            Mitigation; Enhanced IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS SW sequence
  Srbds:                 Mitigation; Microcode
  Tsx async abort:       Not affected

from milli.

Kerollmops avatar Kerollmops commented on June 2, 2024

So you have an Invalid Argument error, it is due to the number of threads opened that is too high. The OS doesn't like that, could you please try a cargo test -- --test-thread 1?

from milli.

amab8901 avatar amab8901 commented on June 2, 2024

So you have an Invalid Argument error, it is due to the number of threads opened that is too high. The OS doesn't like that, could you please try a cargo test -- --test-thread 1?

output from `cargo test -- --test-thread 1`:
Finished test [unoptimized + debuginfo] target(s) in 0.11s
 Running unittests src/lib.rs (target/debug/deps/milli-2acbdb253a96602d)

error: Unrecognized option: 'test-thread'
error: test failed, to rerun pass '--lib'

You probably meant this one though:

output from `cargo test -- --test-threads 1`:
    Finished test [unoptimized + debuginfo] target(s) in 0.09s
     Running unittests src/lib.rs (target/debug/deps/milli-2acbdb253a96602d)

running 183 tests
test asc_desc::tests::parse_asc_desc ... ok
test criterion::tests::parse_criterion ... ok
test documents::builder::test::add_documents_csv ... ok
test documents::builder::test::add_single_documents_json ... ok
test documents::builder::test::bad_column_count1 ... ok
test documents::builder::test::bad_column_count2 ... ok
test documents::builder::test::bad_type_in_header ... ok
test documents::builder::test::coma_in_field ... ok
test documents::builder::test::double_colon_in_header ... ok
test documents::builder::test::ending_by_colon_in_header ... ok
test documents::builder::test::float_in_field ... ok
test documents::builder::test::integer_as_id ... ok
test documents::builder::test::integer_in_field ... ok
test documents::builder::test::quote_in_field ... ok
test documents::builder::test::several_colon_in_header ... ok
test documents::builder::test::simple_csv_document ... ok
test documents::builder::test::starting_by_colon_in_header ... ok
test documents::builder::test::starting_by_colon_in_header2 ... ignored
test documents::test::create_documents_no_errors ... ok
test documents::test::out_of_order_csv_fields ... ok
test documents::test::out_of_order_json_fields ... ok
test documents::test::test_add_multiple_documents ... ok
test documents::test::test_nested ... ok
test error::conditionally_lookup_for_error_message ... ok
test external_documents_ids::tests::simple_insert_delete_ids ... ok
test external_documents_ids::tests::strange_delete_insert_ids ... ok
test facet::value_encoding::tests::ordered_f64_bytes ... ok
test fields_ids_map::tests::fields_ids_map ... ok
test heed_codec::roaring_bitmap::cbo_roaring_bitmap_codec::tests::merge_cbo_roaring_bitmaps ... ok
test heed_codec::roaring_bitmap::cbo_roaring_bitmap_codec::tests::verify_encoding_decoding ... ok
test heed_codec::roaring_bitmap::cbo_roaring_bitmap_codec::tests::verify_threshold ... ok
test heed_codec::roaring_bitmap_length::roaring_bitmap_len_codec::tests::deserialize_roaring_bitmap_length ... ok
test index::tests::aborting_indexation ... FAILED
test index::tests::add_documents_and_set_searchable_fields ... FAILED
test index::tests::initial_field_distribution ... FAILED
test index::tests::put_and_retrieve_disable_typo ... FAILED
test index::tests::set_min_word_len_for_typos ... FAILED
test index::tests::set_searchable_fields_and_add_documents ... FAILED
test search::criteria::attribute::tests::simple_flatten_query_tree ... ok
test search::criteria::typo::test::initial_placeholder_no_facets ... ok
test search::criteria::typo::test::initial_placeholder_with_facets ... ok
test search::criteria::typo::test::initial_query_tree_no_facets ... ok
test search::criteria::typo::test::initial_query_tree_with_facets ... ok
test search::distinct::facet_distinct::test::test_number ... FAILED
test search::distinct::facet_distinct::test::test_string ... FAILED
test search::distinct::facet_distinct::test::test_strings ... FAILED
test search::distinct::noop_distinct::test::test_noop ... ok
test search::facet::facet_distribution::tests::few_candidates_few_facet_values ... FAILED
test search::facet::facet_distribution::tests::many_candidates_few_facet_values ... FAILED
test search::facet::facet_distribution::tests::many_candidates_many_facet_values ... FAILED
test search::facet::facet_distribution_iter::tests::filter_distribution_all ... stored new snapshot /home/amab/src/milli/milli/src/search/facet/snapshots/facet_distribution_iter.rs/main/0.snap.new
FAILED
test search::facet::facet_distribution_iter::tests::filter_distribution_all_stop_early ... stored new snapshot /home/amab/src/milli/milli/src/search/facet/snapshots/facet_distribution_iter.rs/main/0.snap.new
FAILED
test search::facet::facet_range_search::tests::filter_range_decreasing ... stored new snapshot /home/amab/src/milli/milli/src/search/facet/snapshots/facet_range_search.rs/main/included_0.hash.snap.new
FAILED
test search::facet::facet_range_search::tests::filter_range_increasing ... stored new snapshot /home/amab/src/milli/milli/src/search/facet/snapshots/facet_range_search.rs/main/included_0.hash.snap.new
FAILED
test search::facet::facet_range_search::tests::filter_range_pinch ... stored new snapshot /home/amab/src/milli/milli/src/search/facet/snapshots/facet_range_search.rs/main/included_0.hash.snap.new
FAILED
test search::facet::facet_range_search::tests::random_looking_index_snap ... stored new snapshot /home/amab/src/milli/milli/src/search/facet/snapshots/facet_range_search.rs/main/main.hash.snap.new
FAILED
test search::facet::facet_sort_ascending::tests::filter_sort ... stored new snapshot /home/amab/src/milli/milli/src/search/facet/snapshots/facet_sort_ascending.rs/main/0.snap.new
FAILED
test search::facet::facet_sort_descending::tests::filter_sort_descending ... stored new snapshot /home/amab/src/milli/milli/src/search/facet/snapshots/facet_sort_descending.rs/main/0.snap.new
FAILED
test search::facet::filter::tests::empty_db ... FAILED
test search::facet::filter::tests::empty_filter ... ok
test search::facet::filter::tests::escaped_quote_in_filter_value_2380 ... FAILED
test search::facet::filter::tests::filter_depth ... ok
test search::facet::filter::tests::from_array ... ok
test search::facet::filter::tests::geo_radius_error ... FAILED
test search::facet::filter::tests::not_filterable ... FAILED
test search::matches::matching_words::tests::matching_words ... ok
test search::matches::matching_words::tests::test_bytes_to_highlight ... ok
test search::matches::tests::format_crop ... ok
test search::matches::tests::format_highlight ... ok
test search::matches::tests::format_highlight_crop ... ok
test search::matches::tests::format_identity ... ok
test search::matches::tests::highlight_unicode ... ok
test search::matches::tests::partial_matches ... ok
test search::matches::tests::smaller_crop_size ... ok
test search::query_tree::test::complex_synonyms ... ok
test search::query_tree::test::disable_typo_on_word ... ok
test search::query_tree::test::ngrams ... ok
test search::query_tree::test::no_prefix ... ok
test search::query_tree::test::no_typo ... ok
test search::query_tree::test::optional_word ... ok
test search::query_tree::test::optional_word_multiple_phrases ... ok
test search::query_tree::test::optional_word_phrase ... ok
test search::query_tree::test::phrase ... ok
test search::query_tree::test::phrase_2 ... ok
test search::query_tree::test::phrase_with_hard_separator ... ok
test search::query_tree::test::prefix ... ok
test search::query_tree::test::synonyms ... ok
test search::query_tree::test::test_min_word_len_typo ... ok
test search::query_tree::test::word_split ... ok
test search::query_tree::test::word_split_choose_pair_with_max_freq ... ok
test search::query_tree::test::words_limit ... ok
test search::test::test_bad_prefix ... ok
test search::test::test_is_authorized_typos ... FAILED
test search::test::test_one_typos_first_letter ... ok
test search::test::test_one_typos_tolerance ... ok
test search::test::test_prefix ... ok
test search::test::test_prefix_with_typo ... ok
test search::test::test_two_typos_first_letter ... ok
test search::test::test_two_typos_tolerance ... ok
test tests::json_to_string_array ... ok
test tests::json_to_string_object ... ok
test tests::test_absolute_position_conversion ... ok
test tests::test_relative_position_conversion ... ok
test update::available_documents_ids::tests::empty ... ok
test update::available_documents_ids::tests::scattered ... ok
test update::available_documents_ids::tests::soft_deleted ... ok
test update::clear_documents::tests::clear_documents ... FAILED
test update::delete_documents::tests::delete_documents_with_numbers_as_primary_key ... FAILED
test update::delete_documents::tests::delete_documents_with_strange_primary_key ... FAILED
test update::delete_documents::tests::filtered_placeholder_search_should_not_return_deleted_documents ... FAILED
test update::delete_documents::tests::geo_filtered_placeholder_search_should_not_return_deleted_documents ... FAILED
test update::delete_documents::tests::get_documents_should_not_return_deleted_documents ... FAILED
test update::delete_documents::tests::placeholder_search_should_not_return_deleted_documents ... FAILED
test update::delete_documents::tests::search_should_not_return_deleted_documents ... FAILED
test update::delete_documents::tests::stats_should_not_return_deleted_documents ... FAILED
test update::facet::bulk::tests::insert ... stored new snapshot /home/amab/src/milli/milli/src/update/facet/snapshots/bulk.rs/main/default.hash.snap.new
FAILED
test update::facet::bulk::tests::insert_delete_field_insert ... stored new snapshot /home/amab/src/milli/milli/src/update/facet/snapshots/bulk.rs/main/default.hash.snap.new
FAILED
test update::facet::delete::tests::delete_mixed_incremental_and_bulk ... FAILED
test update::facet::incremental::tests::append ... stored new snapshot /home/amab/src/milli/milli/src/update/facet/snapshots/incremental.rs/main/main.hash.snap.new
FAILED
test update::facet::incremental::tests::delete_from_end ... stored new snapshot /home/amab/src/milli/milli/src/update/facet/snapshots/incremental.rs/main/200.hash.snap.new
FAILED
test update::facet::incremental::tests::delete_from_start ... stored new snapshot /home/amab/src/milli/milli/src/update/facet/snapshots/incremental.rs/main/127.hash.snap.new
FAILED
test update::facet::incremental::tests::delete_shuffled ... stored new snapshot /home/amab/src/milli/milli/src/update/facet/snapshots/incremental.rs/main/127.hash.snap.new
FAILED
test update::facet::incremental::tests::in_place_level0_delete ... stored new snapshot /home/amab/src/milli/milli/src/update/facet/snapshots/incremental.rs/main/before_delete.hash.snap.new
FAILED
test update::facet::incremental::tests::in_place_level0_insert ... stored new snapshot /home/amab/src/milli/milli/src/update/facet/snapshots/incremental.rs/main/main.snap.new
FAILED
test update::facet::incremental::tests::many_field_ids_append ... stored new snapshot /home/amab/src/milli/milli/src/update/facet/snapshots/incremental.rs/main/main.hash.snap.new
FAILED
test update::facet::incremental::tests::many_field_ids_prepend ... stored new snapshot /home/amab/src/milli/milli/src/update/facet/snapshots/incremental.rs/main/main.hash.snap.new
FAILED
test update::facet::incremental::tests::merge_values ... stored new snapshot /home/amab/src/milli/milli/src/update/facet/snapshots/incremental.rs/main/main.hash.snap.new
FAILED
test update::facet::incremental::tests::prepend ... stored new snapshot /home/amab/src/milli/milli/src/update/facet/snapshots/incremental.rs/main/main.hash.snap.new
FAILED
test update::facet::incremental::tests::shuffle_merge_string_and_delete ... stored new snapshot /home/amab/src/milli/milli/src/update/facet/snapshots/incremental.rs/main/before_delete.hash.snap.new
FAILED
test update::facet::incremental::tests::shuffled ... stored new snapshot /home/amab/src/milli/milli/src/update/facet/snapshots/incremental.rs/main/main.hash.snap.new
FAILED
test update::index_documents::tests::complex_documents ... FAILED
test update::index_documents::tests::delete_documents_then_insert ... FAILED
test update::index_documents::tests::empty_update ... FAILED
test update::index_documents::tests::geo_error ... FAILED
test update::index_documents::tests::index_2_times_documents_split_by_zero_document_indexation ... FAILED
test update::index_documents::tests::index_all_flavour_of_geo ... FAILED
test update::index_documents::tests::index_documents_check_exists_database ... FAILED
test update::index_documents::tests::index_documents_in_multiple_transforms ... FAILED
test update::index_documents::tests::index_documents_with_nested_fields ... FAILED
test update::index_documents::tests::index_documents_with_nested_primary_key ... FAILED
test update::index_documents::tests::index_documents_with_zeroes ... FAILED
test update::index_documents::tests::index_more_than_1000_positions_in_a_field ... FAILED
test update::index_documents::tests::index_more_than_256_fields ... FAILED
test update::index_documents::tests::invalid_documents_ids ... FAILED
test update::index_documents::tests::long_words_must_be_skipped ... FAILED
test update::index_documents::tests::mixed_geo_documents ... FAILED
test update::index_documents::tests::not_auto_generated_documents_ids ... FAILED
test update::index_documents::tests::primary_key_must_not_contain_floats ... FAILED
test update::index_documents::tests::primary_key_must_not_contain_whitespace ... FAILED
test update::index_documents::tests::reordered_auto_generated_documents_ids ... FAILED
test update::index_documents::tests::retrieve_a_b_c_nested_document_id ... FAILED
test update::index_documents::tests::retrieve_a_b_nested_document_id ... FAILED
test update::index_documents::tests::simple_auto_generated_documents_ids ... FAILED
test update::index_documents::tests::simple_document_merge ... FAILED
test update::index_documents::tests::simple_document_replacement ... FAILED
test update::index_documents::tests::simple_documents_replace ... FAILED
test update::index_documents::tests::test_facets_generation ... FAILED
test update::index_documents::tests::test_meilisearch_1714 ... FAILED
test update::index_documents::tests::text_with_too_long_keys ... FAILED
test update::index_documents::tests::text_with_too_long_words ... FAILED
test update::prefix_word_pairs::tests::test_update ... FAILED
test update::prefix_word_pairs::word_prefix::tests::test_execute_on_word_pairs_and_prefixes ... ok
test update::prefix_word_pairs::word_prefix::tests::test_trie ... ok
test update::settings::tests::default_displayed_fields ... FAILED
test update::settings::tests::default_stop_words ... FAILED
test update::settings::tests::mixup_searchable_with_displayed_fields ... FAILED
test update::settings::tests::set_and_reset_displayed_field ... FAILED
test update::settings::tests::set_and_reset_searchable_fields ... FAILED
test update::settings::tests::set_and_reset_stop_words ... FAILED
test update::settings::tests::set_and_reset_synonyms ... FAILED
test update::settings::tests::set_asc_desc_field ... FAILED
test update::settings::tests::set_distinct_field ... FAILED
test update::settings::tests::set_filterable_fields ... FAILED
test update::settings::tests::set_nested_distinct_field ... FAILED
test update::settings::tests::setting_impact_relevancy ... FAILED
test update::settings::tests::setting_not_filterable_cant_filter ... FAILED
test update::settings::tests::setting_primary_key ... FAILED
test update::settings::tests::setting_searchable_recomputes_other_settings ... FAILED
test update::settings::tests::test_correct_settings_init ... FAILED
test update::settings::tests::test_disable_typo ... FAILED
test update::settings::tests::update_exact_words_normalization ... FAILED
test update::settings::tests::update_invalid_min_word_len_for_typo ... FAILED
test update::settings::tests::update_min_word_len_for_typo ... FAILED

failures:

---- index::tests::aborting_indexation stdout ----
thread 'main' panicked at 'called `Result::unwrap()` on an `Err` value: IoError(Os { code: 22, kind: InvalidInput, message: "Invalid argument" })', milli/src/index.rs:1217:62
note: run with `RUST_BACKTRACE=1` environment variable to display a backtrace

---- index::tests::add_documents_and_set_searchable_fields stdout ----
thread 'main' panicked at 'called `Result::unwrap()` on an `Err` value: IoError(Os { code: 22, kind: InvalidInput, message: "Invalid argument" })', milli/src/index.rs:1217:62

---- index::tests::initial_field_distribution stdout ----
thread 'main' panicked at 'called `Result::unwrap()` on an `Err` value: IoError(Os { code: 22, kind: InvalidInput, message: "Invalid argument" })', milli/src/index.rs:1217:62

---- index::tests::put_and_retrieve_disable_typo stdout ----
thread 'main' panicked at 'called `Result::unwrap()` on an `Err` value: IoError(Os { code: 22, kind: InvalidInput, message: "Invalid argument" })', milli/src/index.rs:1217:62

---- index::tests::set_min_word_len_for_typos stdout ----
thread 'main' panicked at 'called `Result::unwrap()` on an `Err` value: IoError(Os { code: 22, kind: InvalidInput, message: "Invalid argument" })', milli/src/index.rs:1217:62

---- index::tests::set_searchable_fields_and_add_documents stdout ----
thread 'main' panicked at 'called `Result::unwrap()` on an `Err` value: IoError(Os { code: 22, kind: InvalidInput, message: "Invalid argument" })', milli/src/index.rs:1217:62

---- search::distinct::facet_distinct::test::test_number stdout ----
thread 'main' panicked at 'called `Result::unwrap()` on an `Err` value: IoError(Os { code: 22, kind: InvalidInput, message: "Invalid argument" })', milli/src/index.rs:1217:62

---- search::distinct::facet_distinct::test::test_string stdout ----
thread 'main' panicked at 'called `Result::unwrap()` on an `Err` value: IoError(Os { code: 22, kind: InvalidInput, message: "Invalid argument" })', milli/src/index.rs:1217:62

---- search::distinct::facet_distinct::test::test_strings stdout ----
thread 'main' panicked at 'called `Result::unwrap()` on an `Err` value: IoError(Os { code: 22, kind: InvalidInput, message: "Invalid argument" })', milli/src/index.rs:1217:62

---- search::facet::facet_distribution::tests::few_candidates_few_facet_values stdout ----
thread 'main' panicked at 'called `Result::unwrap()` on an `Err` value: IoError(Os { code: 22, kind: InvalidInput, message: "Invalid argument" })', milli/src/index.rs:1217:62

---- search::facet::facet_distribution::tests::many_candidates_few_facet_values stdout ----
thread 'main' panicked at 'called `Result::unwrap()` on an `Err` value: IoError(Os { code: 22, kind: InvalidInput, message: "Invalid argument" })', milli/src/index.rs:1217:62

---- search::facet::facet_distribution::tests::many_candidates_many_facet_values stdout ----
thread 'main' panicked at 'called `Result::unwrap()` on an `Err` value: IoError(Os { code: 22, kind: InvalidInput, message: "Invalid argument" })', milli/src/index.rs:1217:62

---- search::facet::facet_distribution_iter::tests::filter_distribution_all stdout ----
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ Snapshot Differences ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
Snapshot file: milli/src/search/facet/snapshots/facet_distribution_iter.rs/main/0.snap
Snapshot: 0
Source: milli/src/search/facet/facet_distribution_iter.rs:160
─────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────
+new results
────────────┬────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────
          0 │+0: 1
          1 │+1: 1
          2 │+2: 1
          3 │+3: 1
          4 │+4: 1
          5 │+5: 1
          6 │+6: 1
          7 │+7: 1
          8 │+8: 1
          9 │+9: 1
         10 │+10: 1
         11 │+11: 1
         12 │+12: 1
         13 │+13: 1
         14 │+14: 1
         15 │+15: 1
         16 │+16: 1
         17 │+17: 1
         18 │+18: 1
         19 │+19: 1
         20 │+20: 1
         21 │+21: 1
         22 │+22: 1
         23 │+23: 1
         24 │+24: 1
         25 │+25: 1
         26 │+26: 1
         27 │+27: 1
         28 │+28: 1
         29 │+29: 1
         30 │+30: 1
         31 │+31: 1
         32 │+32: 1
         33 │+33: 1
         34 │+34: 1
         35 │+35: 1
         36 │+36: 1
         37 │+37: 1
         38 │+38: 1
         39 │+39: 1
         40 │+40: 1
         41 │+41: 1
         42 │+42: 1
         43 │+43: 1
         44 │+44: 1
         45 │+45: 1
         46 │+46: 1
         47 │+47: 1
         48 │+48: 1
         49 │+49: 1
         50 │+50: 1
         51 │+51: 1
         52 │+52: 1
         53 │+53: 1
         54 │+54: 1
         55 │+55: 1
         56 │+56: 1
         57 │+57: 1
         58 │+58: 1
         59 │+59: 1
         60 │+60: 1
         61 │+61: 1
         62 │+62: 1
         63 │+63: 1
         64 │+64: 1
         65 │+65: 1
         66 │+66: 1
         67 │+67: 1
         68 │+68: 1
         69 │+69: 1
         70 │+70: 1
         71 │+71: 1
         72 │+72: 1
         73 │+73: 1
         74 │+74: 1
         75 │+75: 1
         76 │+76: 1
         77 │+77: 1
         78 │+78: 1
         79 │+79: 1
         80 │+80: 1
         81 │+81: 1
         82 │+82: 1
         83 │+83: 1
         84 │+84: 1
         85 │+85: 1
         86 │+86: 1
         87 │+87: 1
         88 │+88: 1
         89 │+89: 1
         90 │+90: 1
         91 │+91: 1
         92 │+92: 1
         93 │+93: 1
         94 │+94: 1
         95 │+95: 1
         96 │+96: 1
         97 │+97: 1
         98 │+98: 1
         99 │+99: 1
        100 │+100: 1
        101 │+101: 1
        102 │+102: 1
        103 │+103: 1
        104 │+104: 1
        105 │+105: 1
        106 │+106: 1
        107 │+107: 1
        108 │+108: 1
        109 │+109: 1
        110 │+110: 1
        111 │+111: 1
        112 │+112: 1
        113 │+113: 1
        114 │+114: 1
        115 │+115: 1
        116 │+116: 1
        117 │+117: 1
        118 │+118: 1
        119 │+119: 1
        120 │+120: 1
        121 │+121: 1
        122 │+122: 1
        123 │+123: 1
        124 │+124: 1
        125 │+125: 1
        126 │+126: 1
        127 │+127: 1
        128 │+128: 1
        129 │+129: 1
        130 │+130: 1
        131 │+131: 1
        132 │+132: 1
        133 │+133: 1
        134 │+134: 1
        135 │+135: 1
        136 │+136: 1
        137 │+137: 1
        138 │+138: 1
        139 │+139: 1
        140 │+140: 1
        141 │+141: 1
        142 │+142: 1
        143 │+143: 1
        144 │+144: 1
        145 │+145: 1
        146 │+146: 1
        147 │+147: 1
        148 │+148: 1
        149 │+149: 1
        150 │+150: 1
        151 │+151: 1
        152 │+152: 1
        153 │+153: 1
        154 │+154: 1
        155 │+155: 1
        156 │+156: 1
        157 │+157: 1
        158 │+158: 1
        159 │+159: 1
        160 │+160: 1
        161 │+161: 1
        162 │+162: 1
        163 │+163: 1
        164 │+164: 1
        165 │+165: 1
        166 │+166: 1
        167 │+167: 1
        168 │+168: 1
        169 │+169: 1
        170 │+170: 1
        171 │+171: 1
        172 │+172: 1
        173 │+173: 1
        174 │+174: 1
        175 │+175: 1
        176 │+176: 1
        177 │+177: 1
        178 │+178: 1
        179 │+179: 1
        180 │+180: 1
        181 │+181: 1
        182 │+182: 1
        183 │+183: 1
        184 │+184: 1
        185 │+185: 1
        186 │+186: 1
        187 │+187: 1
        188 │+188: 1
        189 │+189: 1
        190 │+190: 1
        191 │+191: 1
        192 │+192: 1
        193 │+193: 1
        194 │+194: 1
        195 │+195: 1
        196 │+196: 1
        197 │+197: 1
        198 │+198: 1
        199 │+199: 1
        200 │+200: 1
        201 │+201: 1
        202 │+202: 1
        203 │+203: 1
        204 │+204: 1
        205 │+205: 1
        206 │+206: 1
        207 │+207: 1
        208 │+208: 1
        209 │+209: 1
        210 │+210: 1
        211 │+211: 1
        212 │+212: 1
        213 │+213: 1
        214 │+214: 1
        215 │+215: 1
        216 │+216: 1
        217 │+217: 1
        218 │+218: 1
        219 │+219: 1
        220 │+220: 1
        221 │+221: 1
        222 │+222: 1
        223 │+223: 1
        224 │+224: 1
        225 │+225: 1
        226 │+226: 1
        227 │+227: 1
        228 │+228: 1
        229 │+229: 1
        230 │+230: 1
        231 │+231: 1
        232 │+232: 1
        233 │+233: 1
        234 │+234: 1
        235 │+235: 1
        236 │+236: 1
        237 │+237: 1
        238 │+238: 1
        239 │+239: 1
        240 │+240: 1
        241 │+241: 1
        242 │+242: 1
        243 │+243: 1
        244 │+244: 1
        245 │+245: 1
        246 │+246: 1
        247 │+247: 1
        248 │+248: 1
        249 │+249: 1
        250 │+250: 1
        251 │+251: 1
        252 │+252: 1
        253 │+253: 1
        254 │+254: 1
        255 │+255: 1
────────────┴────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────
To update snapshots run `cargo insta review`
Stopped on the first failure. Run `cargo insta test` to run all snapshots.
thread 'main' panicked at 'snapshot assertion for '0' failed in line 160', /home/amab/.cargo/registry/src/github.com-1ecc6299db9ec823/insta-1.21.0/src/runtime.rs:516:9

---- search::facet::facet_distribution_iter::tests::filter_distribution_all_stop_early stdout ----
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ Snapshot Differences ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
Snapshot file: milli/src/search/facet/snapshots/facet_distribution_iter.rs/main/0.snap
Snapshot: 0
Source: milli/src/search/facet/facet_distribution_iter.rs:191
─────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────
+new results
────────────┬────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────
          0 │+0: 1
          1 │+1: 1
          2 │+2: 1
          3 │+3: 1
          4 │+4: 1
          5 │+5: 1
          6 │+6: 1
          7 │+7: 1
          8 │+8: 1
          9 │+9: 1
         10 │+10: 1
         11 │+11: 1
         12 │+12: 1
         13 │+13: 1
         14 │+14: 1
         15 │+15: 1
         16 │+16: 1
         17 │+17: 1
         18 │+18: 1
         19 │+19: 1
         20 │+20: 1
         21 │+21: 1
         22 │+22: 1
         23 │+23: 1
         24 │+24: 1
         25 │+25: 1
         26 │+26: 1
         27 │+27: 1
         28 │+28: 1
         29 │+29: 1
         30 │+30: 1
         31 │+31: 1
         32 │+32: 1
         33 │+33: 1
         34 │+34: 1
         35 │+35: 1
         36 │+36: 1
         37 │+37: 1
         38 │+38: 1
         39 │+39: 1
         40 │+40: 1
         41 │+41: 1
         42 │+42: 1
         43 │+43: 1
         44 │+44: 1
         45 │+45: 1
         46 │+46: 1
         47 │+47: 1
         48 │+48: 1
         49 │+49: 1
         50 │+50: 1
         51 │+51: 1
         52 │+52: 1
         53 │+53: 1
         54 │+54: 1
         55 │+55: 1
         56 │+56: 1
         57 │+57: 1
         58 │+58: 1
         59 │+59: 1
         60 │+60: 1
         61 │+61: 1
         62 │+62: 1
         63 │+63: 1
         64 │+64: 1
         65 │+65: 1
         66 │+66: 1
         67 │+67: 1
         68 │+68: 1
         69 │+69: 1
         70 │+70: 1
         71 │+71: 1
         72 │+72: 1
         73 │+73: 1
         74 │+74: 1
         75 │+75: 1
         76 │+76: 1
         77 │+77: 1
         78 │+78: 1
         79 │+79: 1
         80 │+80: 1
         81 │+81: 1
         82 │+82: 1
         83 │+83: 1
         84 │+84: 1
         85 │+85: 1
         86 │+86: 1
         87 │+87: 1
         88 │+88: 1
         89 │+89: 1
         90 │+90: 1
         91 │+91: 1
         92 │+92: 1
         93 │+93: 1
         94 │+94: 1
         95 │+95: 1
         96 │+96: 1
         97 │+97: 1
         98 │+98: 1
         99 │+99: 1
────────────┴────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────
To update snapshots run `cargo insta review`
Stopped on the first failure. Run `cargo insta test` to run all snapshots.
thread 'main' panicked at 'snapshot assertion for '0' failed in line 191', /home/amab/.cargo/registry/src/github.com-1ecc6299db9ec823/insta-1.21.0/src/runtime.rs:516:9

---- search::facet::facet_range_search::tests::filter_range_decreasing stdout ----
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ Snapshot Differences ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
Snapshot file: milli/src/search/facet/snapshots/facet_range_search.rs/main/included_0.hash.snap
Snapshot: included_0.hash
Source: milli/src/search/facet/facet_range_search.rs:405
─────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────
+new results
────────────┬────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────
          0 │+57d35cfa419a19a1a1f8d7c8ef096e0f
────────────┴────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────
To update snapshots run `cargo insta review`
Stopped on the first failure. Run `cargo insta test` to run all snapshots.
thread 'main' panicked at 'snapshot assertion for 'included_0.hash' failed in line 405', /home/amab/.cargo/registry/src/github.com-1ecc6299db9ec823/insta-1.21.0/src/runtime.rs:516:9

---- search::facet::facet_range_search::tests::filter_range_increasing stdout ----
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ Snapshot Differences ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
Snapshot file: milli/src/search/facet/snapshots/facet_range_search.rs/main/included_0.hash.snap
Snapshot: included_0.hash
Source: milli/src/search/facet/facet_range_search.rs:353
─────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────
+new results
────────────┬────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────
          0 │+ca59f20e043a4d52c49e15b10adf96bb
────────────┴────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────
To update snapshots run `cargo insta review`
Stopped on the first failure. Run `cargo insta test` to run all snapshots.
thread 'main' panicked at 'snapshot assertion for 'included_0.hash' failed in line 353', /home/amab/.cargo/registry/src/github.com-1ecc6299db9ec823/insta-1.21.0/src/runtime.rs:516:9

---- search::facet::facet_range_search::tests::filter_range_pinch stdout ----
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ Snapshot Differences ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
Snapshot file: milli/src/search/facet/snapshots/facet_range_search.rs/main/included_0.hash.snap
Snapshot: included_0.hash
Source: milli/src/search/facet/facet_range_search.rs:461
─────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────
+new results
────────────┬────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────
          0 │+b976551ceff412bfb2ec9bfbda320bbb
────────────┴────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────
To update snapshots run `cargo insta review`
Stopped on the first failure. Run `cargo insta test` to run all snapshots.
thread 'main' panicked at 'snapshot assertion for 'included_0.hash' failed in line 461', /home/amab/.cargo/registry/src/github.com-1ecc6299db9ec823/insta-1.21.0/src/runtime.rs:516:9

---- search::facet::facet_range_search::tests::random_looking_index_snap stdout ----
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ Snapshot Differences ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
Snapshot file: milli/src/search/facet/snapshots/facet_range_search.rs/main/main.hash.snap
Snapshot: main.hash
Source: milli/src/search/facet/facet_range_search.rs:324
─────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────
+new results
────────────┬────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────
          0 │+3256c76a7c1b768a013e78d5fa6e9ff9
────────────┴────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────
To update snapshots run `cargo insta review`
Stopped on the first failure. Run `cargo insta test` to run all snapshots.
thread 'main' panicked at 'snapshot assertion for 'main.hash' failed in line 324', /home/amab/.cargo/registry/src/github.com-1ecc6299db9ec823/insta-1.21.0/src/runtime.rs:516:9

---- search::facet::facet_sort_ascending::tests::filter_sort stdout ----
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ Snapshot Differences ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
Snapshot file: milli/src/search/facet/snapshots/facet_sort_ascending.rs/main/0.snap
Snapshot: 0
Source: milli/src/search/facet/facet_sort_ascending.rs:131
─────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────
+new results
────────────┬────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────
          0 │+[200, ]
          1 │+[201, ]
          2 │+[202, ]
          3 │+[203, ]
          4 │+[204, ]
          5 │+[205, ]
          6 │+[206, ]
          7 │+[207, ]
          8 │+[208, ]
          9 │+[209, ]
         10 │+[210, ]
         11 │+[211, ]
         12 │+[212, ]
         13 │+[213, ]
         14 │+[214, ]
         15 │+[215, ]
         16 │+[216, ]
         17 │+[217, ]
         18 │+[218, ]
         19 │+[219, ]
         20 │+[220, ]
         21 │+[221, ]
         22 │+[222, ]
         23 │+[223, ]
         24 │+[224, ]
         25 │+[225, ]
         26 │+[226, ]
         27 │+[227, ]
         28 │+[228, ]
         29 │+[229, ]
         30 │+[230, ]
         31 │+[231, ]
         32 │+[232, ]
         33 │+[233, ]
         34 │+[234, ]
         35 │+[235, ]
         36 │+[236, ]
         37 │+[237, ]
         38 │+[238, ]
         39 │+[239, ]
         40 │+[240, ]
         41 │+[241, ]
         42 │+[242, ]
         43 │+[243, ]
         44 │+[244, ]
         45 │+[245, ]
         46 │+[246, ]
         47 │+[247, ]
         48 │+[248, ]
         49 │+[249, ]
         50 │+[250, ]
         51 │+[251, ]
         52 │+[252, ]
         53 │+[253, ]
         54 │+[254, ]
         55 │+[255, ]
────────────┴────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────
To update snapshots run `cargo insta review`
Stopped on the first failure. Run `cargo insta test` to run all snapshots.
thread 'main' panicked at 'snapshot assertion for '0' failed in line 131', /home/amab/.cargo/registry/src/github.com-1ecc6299db9ec823/insta-1.21.0/src/runtime.rs:516:9

---- search::facet::facet_sort_descending::tests::filter_sort_descending stdout ----
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ Snapshot Differences ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
Snapshot file: milli/src/search/facet/snapshots/facet_sort_descending.rs/main/0.snap
Snapshot: 0
Source: milli/src/search/facet/facet_sort_descending.rs:146
─────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────
+new results
────────────┬────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────
          0 │+[255, ]
          1 │+[254, ]
          2 │+[253, ]
          3 │+[252, ]
          4 │+[251, ]
          5 │+[250, ]
          6 │+[249, ]
          7 │+[248, ]
          8 │+[247, ]
          9 │+[246, ]
         10 │+[245, ]
         11 │+[244, ]
         12 │+[243, ]
         13 │+[242, ]
         14 │+[241, ]
         15 │+[240, ]
         16 │+[239, ]
         17 │+[238, ]
         18 │+[237, ]
         19 │+[236, ]
         20 │+[235, ]
         21 │+[234, ]
         22 │+[233, ]
         23 │+[232, ]
         24 │+[231, ]
         25 │+[230, ]
         26 │+[229, ]
         27 │+[228, ]
         28 │+[227, ]
         29 │+[226, ]
         30 │+[225, ]
         31 │+[224, ]
         32 │+[223, ]
         33 │+[222, ]
         34 │+[221, ]
         35 │+[220, ]
         36 │+[219, ]
         37 │+[218, ]
         38 │+[217, ]
         39 │+[216, ]
         40 │+[215, ]
         41 │+[214, ]
         42 │+[213, ]
         43 │+[212, ]
         44 │+[211, ]
         45 │+[210, ]
         46 │+[209, ]
         47 │+[208, ]
         48 │+[207, ]
         49 │+[206, ]
         50 │+[205, ]
         51 │+[204, ]
         52 │+[203, ]
         53 │+[202, ]
         54 │+[201, ]
         55 │+[200, ]
────────────┴────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────
To update snapshots run `cargo insta review`
Stopped on the first failure. Run `cargo insta test` to run all snapshots.
thread 'main' panicked at 'snapshot assertion for '0' failed in line 146', /home/amab/.cargo/registry/src/github.com-1ecc6299db9ec823/insta-1.21.0/src/runtime.rs:516:9

---- search::facet::filter::tests::empty_db stdout ----
thread 'main' panicked at 'called `Result::unwrap()` on an `Err` value: IoError(Os { code: 22, kind: InvalidInput, message: "Invalid argument" })', milli/src/index.rs:1217:62

---- search::facet::filter::tests::escaped_quote_in_filter_value_2380 stdout ----
thread 'main' panicked at 'called `Result::unwrap()` on an `Err` value: IoError(Os { code: 22, kind: InvalidInput, message: "Invalid argument" })', milli/src/index.rs:1217:62

---- search::facet::filter::tests::geo_radius_error stdout ----
thread 'main' panicked at 'called `Result::unwrap()` on an `Err` value: IoError(Os { code: 22, kind: InvalidInput, message: "Invalid argument" })', milli/src/index.rs:1217:62

---- search::facet::filter::tests::not_filterable stdout ----
thread 'main' panicked at 'called `Result::unwrap()` on an `Err` value: IoError(Os { code: 22, kind: InvalidInput, message: "Invalid argument" })', milli/src/index.rs:1217:62

---- search::test::test_is_authorized_typos stdout ----
thread 'main' panicked at 'called `Result::unwrap()` on an `Err` value: IoError(Os { code: 22, kind: InvalidInput, message: "Invalid argument" })', milli/src/index.rs:1217:62

---- update::clear_documents::tests::clear_documents stdout ----
thread 'main' panicked at 'called `Result::unwrap()` on an `Err` value: IoError(Os { code: 22, kind: InvalidInput, message: "Invalid argument" })', milli/src/index.rs:1217:62

---- update::delete_documents::tests::delete_documents_with_numbers_as_primary_key stdout ----
thread 'main' panicked at 'called `Result::unwrap()` on an `Err` value: IoError(Os { code: 22, kind: InvalidInput, message: "Invalid argument" })', milli/src/index.rs:1217:62

---- update::delete_documents::tests::delete_documents_with_strange_primary_key stdout ----
thread 'main' panicked at 'called `Result::unwrap()` on an `Err` value: IoError(Os { code: 22, kind: InvalidInput, message: "Invalid argument" })', milli/src/index.rs:1217:62

---- update::delete_documents::tests::filtered_placeholder_search_should_not_return_deleted_documents stdout ----
thread 'main' panicked at 'called `Result::unwrap()` on an `Err` value: IoError(Os { code: 22, kind: InvalidInput, message: "Invalid argument" })', milli/src/index.rs:1217:62

---- update::delete_documents::tests::geo_filtered_placeholder_search_should_not_return_deleted_documents stdout ----
thread 'main' panicked at 'called `Result::unwrap()` on an `Err` value: IoError(Os { code: 22, kind: InvalidInput, message: "Invalid argument" })', milli/src/index.rs:1217:62

---- update::delete_documents::tests::get_documents_should_not_return_deleted_documents stdout ----
thread 'main' panicked at 'called `Result::unwrap()` on an `Err` value: IoError(Os { code: 22, kind: InvalidInput, message: "Invalid argument" })', milli/src/index.rs:1217:62

---- update::delete_documents::tests::placeholder_search_should_not_return_deleted_documents stdout ----
thread 'main' panicked at 'called `Result::unwrap()` on an `Err` value: IoError(Os { code: 22, kind: InvalidInput, message: "Invalid argument" })', milli/src/index.rs:1217:62

---- update::delete_documents::tests::search_should_not_return_deleted_documents stdout ----
thread 'main' panicked at 'called `Result::unwrap()` on an `Err` value: IoError(Os { code: 22, kind: InvalidInput, message: "Invalid argument" })', milli/src/index.rs:1217:62

---- update::delete_documents::tests::stats_should_not_return_deleted_documents stdout ----
thread 'main' panicked at 'called `Result::unwrap()` on an `Err` value: IoError(Os { code: 22, kind: InvalidInput, message: "Invalid argument" })', milli/src/index.rs:1217:62

---- update::facet::bulk::tests::insert stdout ----
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ Snapshot Differences ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
Snapshot file: milli/src/update/facet/snapshots/bulk.rs/main/default.hash.snap
Snapshot: default.hash
Source: milli/src/update/facet/bulk.rs:381
─────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────
+new results
────────────┬────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────
          0 │+b40dd31a65e033ffc6b35c027ce19506
────────────┴────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────
To update snapshots run `cargo insta review`
Stopped on the first failure. Run `cargo insta test` to run all snapshots.
thread 'main' panicked at 'snapshot assertion for 'default.hash' failed in line 381', /home/amab/.cargo/registry/src/github.com-1ecc6299db9ec823/insta-1.21.0/src/runtime.rs:516:9

---- update::facet::bulk::tests::insert_delete_field_insert stdout ----
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ Snapshot Differences ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
Snapshot file: milli/src/update/facet/snapshots/bulk.rs/main/default.hash.snap
Snapshot: default.hash
Source: milli/src/update/facet/bulk.rs:429
─────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────
+new results
────────────┬────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────
          0 │+fa877559eef78b383b496c15a364a2dc
────────────┴────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────
To update snapshots run `cargo insta review`
Stopped on the first failure. Run `cargo insta test` to run all snapshots.
thread 'main' panicked at 'snapshot assertion for 'default.hash' failed in line 429', /home/amab/.cargo/registry/src/github.com-1ecc6299db9ec823/insta-1.21.0/src/runtime.rs:516:9

---- update::facet::delete::tests::delete_mixed_incremental_and_bulk stdout ----
thread 'main' panicked at 'called `Result::unwrap()` on an `Err` value: IoError(Os { code: 22, kind: InvalidInput, message: "Invalid argument" })', milli/src/index.rs:1217:62

---- update::facet::incremental::tests::append stdout ----
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ Snapshot Differences ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
Snapshot file: milli/src/update/facet/snapshots/incremental.rs/main/main.hash.snap
Snapshot: main.hash
Source: milli/src/update/facet/incremental.rs:677
─────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────
+new results
────────────┬────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────
          0 │+5dbfa134cc44abeb3ab6242fc182e48e
────────────┴────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────
To update snapshots run `cargo insta review`
Stopped on the first failure. Run `cargo insta test` to run all snapshots.
thread 'main' panicked at 'snapshot assertion for 'main.hash' failed in line 677', /home/amab/.cargo/registry/src/github.com-1ecc6299db9ec823/insta-1.21.0/src/runtime.rs:516:9

---- update::facet::incremental::tests::delete_from_end stdout ----
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ Snapshot Differences ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
Snapshot file: milli/src/update/facet/snapshots/incremental.rs/main/200.hash.snap
Snapshot: 200.hash
Source: milli/src/update/facet/incremental.rs:816
─────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────
+new results
────────────┬────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────
          0 │+95497d8579740868ee0bfc655b0bf782
────────────┴────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────
To update snapshots run `cargo insta review`
Stopped on the first failure. Run `cargo insta test` to run all snapshots.
thread 'main' panicked at 'snapshot assertion for '200.hash' failed in line 816', /home/amab/.cargo/registry/src/github.com-1ecc6299db9ec823/insta-1.21.0/src/runtime.rs:516:9

---- update::facet::incremental::tests::delete_from_start stdout ----
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ Snapshot Differences ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
Snapshot file: milli/src/update/facet/snapshots/incremental.rs/main/127.hash.snap
Snapshot: 127.hash
Source: milli/src/update/facet/incremental.rs:876
─────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────
+new results
────────────┬────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────
          0 │+d565c2f7bbd9e13e12de40cfbbfba6bb
────────────┴────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────
To update snapshots run `cargo insta review`
Stopped on the first failure. Run `cargo insta test` to run all snapshots.
thread 'main' panicked at 'snapshot assertion for '127.hash' failed in line 876', /home/amab/.cargo/registry/src/github.com-1ecc6299db9ec823/insta-1.21.0/src/runtime.rs:516:9

---- update::facet::incremental::tests::delete_shuffled stdout ----
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ Snapshot Differences ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
Snapshot file: milli/src/update/facet/snapshots/incremental.rs/main/127.hash.snap
Snapshot: 127.hash
Source: milli/src/update/facet/incremental.rs:917
─────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────
+new results
────────────┬────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────
          0 │+7cb503827ba17e9670296cc9531a1380
────────────┴────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────
To update snapshots run `cargo insta review`
Stopped on the first failure. Run `cargo insta test` to run all snapshots.
thread 'main' panicked at 'snapshot assertion for '127.hash' failed in line 917', /home/amab/.cargo/registry/src/github.com-1ecc6299db9ec823/insta-1.21.0/src/runtime.rs:516:9

---- update::facet::incremental::tests::in_place_level0_delete stdout ----
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ Snapshot Differences ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
Snapshot file: milli/src/update/facet/snapshots/incremental.rs/main/before_delete.hash.snap
Snapshot: before_delete.hash
Source: milli/src/update/facet/incremental.rs:978
─────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────
+new results
────────────┬────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────
          0 │+b17b2c4ec87a778aae07854c96c08b48
────────────┴────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────
To update snapshots run `cargo insta review`
Stopped on the first failure. Run `cargo insta test` to run all snapshots.
thread 'main' panicked at 'snapshot assertion for 'before_delete.hash' failed in line 978', /home/amab/.cargo/registry/src/github.com-1ecc6299db9ec823/insta-1.21.0/src/runtime.rs:516:9

---- update::facet::incremental::tests::in_place_level0_insert stdout ----
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ Snapshot Differences ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
Snapshot file: milli/src/update/facet/snapshots/incremental.rs/main/main.snap
Snapshot: main
Source: milli/src/update/facet/incremental.rs:956
─────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────
+new results
────────────┬────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────
          0 │+0  0  k0        1    "[3, 435, 583, 849, ]"
          1 │+0  0  k1        1    "[35, 494, 693, 796, ]"
          2 │+0  0  k2        1    "[76, 420, 526, 909, ]"
          3 │+0  0  k3        1    "[133, 451, 653, 806, ]"
          4 │+0  0  k4        1    "[131, 464, 656, 853, ]"
          5 │+0  0  k5        1    "[61, 308, 701, 903, ]"
          6 │+0  0  k6        1    "[144, 449, 674, 794, ]"
          7 │+0  0  k7        1    "[182, 451, 735, 941, ]"
          8 │+0  0  k8        1    "[6, 359, 679, 1003, ]"
          9 │+0  0  k9        1    "[197, 418, 659, 904, ]"
         10 │+0  0  k10       1    "[88, 297, 567, 800, ]"
         11 │+0  0  k11       1    "[150, 309, 530, 946, ]"
         12 │+0  0  k12       1    "[156, 466, 567, 892, ]"
         13 │+0  0  k13       1    "[46, 425, 610, 807, ]"
         14 │+0  0  k14       1    "[236, 433, 549, 891, ]"
         15 │+0  0  k15       1    "[207, 472, 603, 974, ]"
────────────┴────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────
To update snapshots run `cargo insta review`
Stopped on the first failure. Run `cargo insta test` to run all snapshots.
thread 'main' panicked at 'snapshot assertion for 'main' failed in line 956', /home/amab/.cargo/registry/src/github.com-1ecc6299db9ec823/insta-1.21.0/src/runtime.rs:516:9

---- update::facet::incremental::tests::many_field_ids_append stdout ----
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ Snapshot Differences ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
Snapshot file: milli/src/update/facet/snapshots/incremental.rs/main/main.hash.snap
Snapshot: main.hash
Source: milli/src/update/facet/incremental.rs:708
─────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────
+new results
────────────┬────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────
          0 │+7f8aa18d2b3a6422d55c03bede0563db
────────────┴────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────
To update snapshots run `cargo insta review`
Stopped on the first failure. Run `cargo insta test` to run all snapshots.
thread 'main' panicked at 'snapshot assertion for 'main.hash' failed in line 708', /home/amab/.cargo/registry/src/github.com-1ecc6299db9ec823/insta-1.21.0/src/runtime.rs:516:9

---- update::facet::incremental::tests::many_field_ids_prepend stdout ----
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ Snapshot Differences ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
Snapshot file: milli/src/update/facet/snapshots/incremental.rs/main/main.hash.snap
Snapshot: main.hash
Source: milli/src/update/facet/incremental.rs:739
─────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────
+new results
────────────┬────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────
          0 │+7f8aa18d2b3a6422d55c03bede0563db
────────────┴────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────
To update snapshots run `cargo insta review`
Stopped on the first failure. Run `cargo insta test` to run all snapshots.
thread 'main' panicked at 'snapshot assertion for 'main.hash' failed in line 739', /home/amab/.cargo/registry/src/github.com-1ecc6299db9ec823/insta-1.21.0/src/runtime.rs:516:9

---- update::facet::incremental::tests::merge_values stdout ----
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ Snapshot Differences ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
Snapshot file: milli/src/update/facet/snapshots/incremental.rs/main/main.hash.snap
Snapshot: main.hash
Source: milli/src/update/facet/incremental.rs:796
─────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────
+new results
────────────┬────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────
          0 │+b3e2de9020d9e0f3941bc3a179c795ba
────────────┴────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────
To update snapshots run `cargo insta review`
Stopped on the first failure. Run `cargo insta test` to run all snapshots.
thread 'main' panicked at 'snapshot assertion for 'main.hash' failed in line 796', /home/amab/.cargo/registry/src/github.com-1ecc6299db9ec823/insta-1.21.0/src/runtime.rs:516:9

---- update::facet::incremental::tests::prepend stdout ----
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ Snapshot Differences ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
Snapshot file: milli/src/update/facet/snapshots/incremental.rs/main/main.hash.snap
Snapshot: main.hash
Source: milli/src/update/facet/incremental.rs:755
─────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────
+new results
────────────┬────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────
          0 │+5dbfa134cc44abeb3ab6242fc182e48e
────────────┴────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────
To update snapshots run `cargo insta review`
Stopped on the first failure. Run `cargo insta test` to run all snapshots.
thread 'main' panicked at 'snapshot assertion for 'main.hash' failed in line 755', /home/amab/.cargo/registry/src/github.com-1ecc6299db9ec823/insta-1.21.0/src/runtime.rs:516:9

---- update::facet::incremental::tests::shuffle_merge_string_and_delete stdout ----
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ Snapshot Differences ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
Snapshot file: milli/src/update/facet/snapshots/incremental.rs/main/before_delete.hash.snap
Snapshot: before_delete.hash
Source: milli/src/update/facet/incremental.rs:1009
─────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────
+new results
────────────┬────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────
          0 │+4fc800f49201a336295af0542fdf01ab
────────────┴────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────
To update snapshots run `cargo insta review`
Stopped on the first failure. Run `cargo insta test` to run all snapshots.
thread 'main' panicked at 'snapshot assertion for 'before_delete.hash' failed in line 1009', /home/amab/.cargo/registry/src/github.com-1ecc6299db9ec823/insta-1.21.0/src/runtime.rs:516:9

---- update::facet::incremental::tests::shuffled stdout ----
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ Snapshot Differences ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
Snapshot file: milli/src/update/facet/snapshots/incremental.rs/main/main.hash.snap
Snapshot: main.hash
Source: milli/src/update/facet/incremental.rs:774
─────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────
+new results
────────────┬────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────
          0 │+fd65ce7d96a07aafb0ef6cfb5bf016b8
────────────┴────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────
To update snapshots run `cargo insta review`
Stopped on the first failure. Run `cargo insta test` to run all snapshots.
thread 'main' panicked at 'snapshot assertion for 'main.hash' failed in line 774', /home/amab/.cargo/registry/src/github.com-1ecc6299db9ec823/insta-1.21.0/src/runtime.rs:516:9

---- update::index_documents::tests::complex_documents stdout ----
thread 'main' panicked at 'called `Result::unwrap()` on an `Err` value: IoError(Os { code: 22, kind: InvalidInput, message: "Invalid argument" })', milli/src/index.rs:1217:62

---- update::index_documents::tests::delete_documents_then_insert stdout ----
thread 'main' panicked at 'called `Result::unwrap()` on an `Err` value: IoError(Os { code: 22, kind: InvalidInput, message: "Invalid argument" })', milli/src/index.rs:1217:62

---- update::index_documents::tests::empty_update stdout ----
thread 'main' panicked at 'called `Result::unwrap()` on an `Err` value: IoError(Os { code: 22, kind: InvalidInput, message: "Invalid argument" })', milli/src/index.rs:1217:62

---- update::index_documents::tests::geo_error stdout ----
thread 'main' panicked at 'called `Result::unwrap()` on an `Err` value: IoError(Os { code: 22, kind: InvalidInput, message: "Invalid argument" })', milli/src/index.rs:1217:62

---- update::index_documents::tests::index_2_times_documents_split_by_zero_document_indexation stdout ----
thread 'main' panicked at 'called `Result::unwrap()` on an `Err` value: IoError(Os { code: 22, kind: InvalidInput, message: "Invalid argument" })', milli/src/index.rs:1217:62

---- update::index_documents::tests::index_all_flavour_of_geo stdout ----
thread 'main' panicked at 'called `Result::unwrap()` on an `Err` value: IoError(Os { code: 22, kind: InvalidInput, message: "Invalid argument" })', milli/src/index.rs:1217:62

---- update::index_documents::tests::index_documents_check_exists_database stdout ----
thread 'main' panicked at 'called `Result::unwrap()` on an `Err` value: IoError(Os { code: 22, kind: InvalidInput, message: "Invalid argument" })', milli/src/index.rs:1217:62

---- update::index_documents::tests::index_documents_in_multiple_transforms stdout ----
thread 'main' panicked at 'called `Result::unwrap()` on an `Err` value: IoError(Os { code: 22, kind: InvalidInput, message: "Invalid argument" })', milli/src/index.rs:1217:62

---- update::index_documents::tests::index_documents_with_nested_fields stdout ----
thread 'main' panicked at 'called `Result::unwrap()` on an `Err` value: IoError(Os { code: 22, kind: InvalidInput, message: "Invalid argument" })', milli/src/index.rs:1217:62

---- update::index_documents::tests::index_documents_with_nested_primary_key stdout ----
thread 'main' panicked at 'called `Result::unwrap()` on an `Err` value: IoError(Os { code: 22, kind: InvalidInput, message: "Invalid argument" })', milli/src/index.rs:1217:62

---- update::index_documents::tests::index_documents_with_zeroes stdout ----
thread 'main' panicked at 'called `Result::unwrap()` on an `Err` value: IoError(Os { code: 22, kind: InvalidInput, message: "Invalid argument" })', milli/src/index.rs:1217:62

---- update::index_documents::tests::index_more_than_1000_positions_in_a_field stdout ----
thread 'main' panicked at 'called `Result::unwrap()` on an `Err` value: IoError(Os { code: 22, kind: InvalidInput, message: "Invalid argument" })', milli/src/index.rs:1217:62

---- update::index_documents::tests::index_more_than_256_fields stdout ----
thread 'main' panicked at 'called `Result::unwrap()` on an `Err` value: IoError(Os { code: 22, kind: InvalidInput, message: "Invalid argument" })', milli/src/index.rs:1217:62

---- update::index_documents::tests::invalid_documents_ids stdout ----
thread 'main' panicked at 'called `Result::unwrap()` on an `Err` value: IoError(Os { code: 22, kind: InvalidInput, message: "Invalid argument" })', milli/src/index.rs:1217:62

---- update::index_documents::tests::long_words_must_be_skipped stdout ----
thread 'main' panicked at 'called `Result::unwrap()` on an `Err` value: IoError(Os { code: 22, kind: InvalidInput, message: "Invalid argument" })', milli/src/index.rs:1217:62

---- update::index_documents::tests::mixed_geo_documents stdout ----
thread 'main' panicked at 'called `Result::unwrap()` on an `Err` value: IoError(Os { code: 22, kind: InvalidInput, message: "Invalid argument" })', milli/src/index.rs:1217:62

---- update::index_documents::tests::not_auto_generated_documents_ids stdout ----
thread 'main' panicked at 'called `Result::unwrap()` on an `Err` value: IoError(Os { code: 22, kind: InvalidInput, message: "Invalid argument" })', milli/src/index.rs:1217:62

---- update::index_documents::tests::primary_key_must_not_contain_floats stdout ----
thread 'main' panicked at 'called `Result::unwrap()` on an `Err` value: IoError(Os { code: 22, kind: InvalidInput, message: "Invalid argument" })', milli/src/index.rs:1217:62

---- update::index_documents::tests::primary_key_must_not_contain_whitespace stdout ----
thread 'main' panicked at 'called `Result::unwrap()` on an `Err` value: IoError(Os { code: 22, kind: InvalidInput, message: "Invalid argument" })', milli/src/index.rs:1217:62

---- update::index_documents::tests::reordered_auto_generated_documents_ids stdout ----
thread 'main' panicked at 'called `Result::unwrap()` on an `Err` value: IoError(Os { code: 22, kind: InvalidInput, message: "Invalid argument" })', milli/src/index.rs:1217:62

---- update::index_documents::tests::retrieve_a_b_c_nested_document_id stdout ----
thread 'main' panicked at 'called `Result::unwrap()` on an `Err` value: IoError(Os { code: 22, kind: InvalidInput, message: "Invalid argument" })', milli/src/index.rs:1217:62

---- update::index_documents::tests::retrieve_a_b_nested_document_id stdout ----
thread 'main' panicked at 'called `Result::unwrap()` on an `Err` value: IoError(Os { code: 22, kind: InvalidInput, message: "Invalid argument" })', milli/src/index.rs:1217:62

---- update::index_documents::tests::simple_auto_generated_documents_ids stdout ----
thread 'main' panicked at 'called `Result::unwrap()` on an `Err` value: IoError(Os { code: 22, kind: InvalidInput, message: "Invalid argument" })', milli/src/index.rs:1217:62

---- update::index_documents::tests::simple_document_merge stdout ----
thread 'main' panicked at 'called `Result::unwrap()` on an `Err` value: IoError(Os { code: 22, kind: InvalidInput, message: "Invalid argument" })', milli/src/index.rs:1217:62

---- update::index_documents::tests::simple_document_replacement stdout ----
thread 'main' panicked at 'called `Result::unwrap()` on an `Err` value: IoError(Os { code: 22, kind: InvalidInput, message: "Invalid argument" })', milli/src/index.rs:1217:62

---- update::index_documents::tests::simple_documents_replace stdout ----
thread 'main' panicked at 'called `Result::unwrap()` on an `Err` value: IoError(Os { code: 22, kind: InvalidInput, message: "Invalid argument" })', milli/src/index.rs:1217:62

---- update::index_documents::tests::test_facets_generation stdout ----
thread 'main' panicked at 'called `Result::unwrap()` on an `Err` value: IoError(Os { code: 22, kind: InvalidInput, message: "Invalid argument" })', milli/src/index.rs:1217:62

---- update::index_documents::tests::test_meilisearch_1714 stdout ----
thread 'main' panicked at 'called `Result::unwrap()` on an `Err` value: IoError(Os { code: 22, kind: InvalidInput, message: "Invalid argument" })', milli/src/index.rs:1217:62

---- update::index_documents::tests::text_with_too_long_keys stdout ----
thread 'main' panicked at 'called `Result::unwrap()` on an `Err` value: IoError(Os { code: 22, kind: InvalidInput, message: "Invalid argument" })', milli/src/index.rs:1217:62

---- update::index_documents::tests::text_with_too_long_words stdout ----
thread 'main' panicked at 'called `Result::unwrap()` on an `Err` value: IoError(Os { code: 22, kind: InvalidInput, message: "Invalid argument" })', milli/src/index.rs:1217:62

---- update::prefix_word_pairs::tests::test_update stdout ----
thread 'main' panicked at 'called `Result::unwrap()` on an `Err` value: IoError(Os { code: 22, kind: InvalidInput, message: "Invalid argument" })', milli/src/index.rs:1217:62

---- update::settings::tests::default_displayed_fields stdout ----
thread 'main' panicked at 'called `Result::unwrap()` on an `Err` value: IoError(Os { code: 22, kind: InvalidInput, message: "Invalid argument" })', milli/src/index.rs:1217:62

---- update::settings::tests::default_stop_words stdout ----
thread 'main' panicked at 'called `Result::unwrap()` on an `Err` value: IoError(Os { code: 22, kind: InvalidInput, message: "Invalid argument" })', milli/src/index.rs:1217:62

---- update::settings::tests::mixup_searchable_with_displayed_fields stdout ----
thread 'main' panicked at 'called `Result::unwrap()` on an `Err` value: IoError(Os { code: 22, kind: InvalidInput, message: "Invalid argument" })', milli/src/index.rs:1217:62

---- update::settings::tests::set_and_reset_displayed_field stdout ----
thread 'main' panicked at 'called `Result::unwrap()` on an `Err` value: IoError(Os { code: 22, kind: InvalidInput, message: "Invalid argument" })', milli/src/index.rs:1217:62

---- update::settings::tests::set_and_reset_searchable_fields stdout ----
thread 'main' panicked at 'called `Result::unwrap()` on an `Err` value: IoError(Os { code: 22, kind: InvalidInput, message: "Invalid argument" })', milli/src/index.rs:1217:62

---- update::settings::tests::set_and_reset_stop_words stdout ----
thread 'main' panicked at 'called `Result::unwrap()` on an `Err` value: IoError(Os { code: 22, kind: InvalidInput, message: "Invalid argument" })', milli/src/index.rs:1217:62

---- update::settings::tests::set_and_reset_synonyms stdout ----
thread 'main' panicked at 'called `Result::unwrap()` on an `Err` value: IoError(Os { code: 22, kind: InvalidInput, message: "Invalid argument" })', milli/src/index.rs:1217:62

---- update::settings::tests::set_asc_desc_field stdout ----
thread 'main' panicked at 'called `Result::unwrap()` on an `Err` value: IoError(Os { code: 22, kind: InvalidInput, message: "Invalid argument" })', milli/src/index.rs:1217:62

---- update::settings::tests::set_distinct_field stdout ----
thread 'main' panicked at 'called `Result::unwrap()` on an `Err` value: IoError(Os { code: 22, kind: InvalidInput, message: "Invalid argument" })', milli/src/index.rs:1217:62

---- update::settings::tests::set_filterable_fields stdout ----
thread 'main' panicked at 'called `Result::unwrap()` on an `Err` value: IoError(Os { code: 22, kind: InvalidInput, message: "Invalid argument" })', milli/src/index.rs:1217:62

---- update::settings::tests::set_nested_distinct_field stdout ----
thread 'main' panicked at 'called `Result::unwrap()` on an `Err` value: IoError(Os { code: 22, kind: InvalidInput, message: "Invalid argument" })', milli/src/index.rs:1217:62

---- update::settings::tests::setting_impact_relevancy stdout ----
thread 'main' panicked at 'called `Result::unwrap()` on an `Err` value: IoError(Os { code: 22, kind: InvalidInput, message: "Invalid argument" })', milli/src/index.rs:1217:62

---- update::settings::tests::setting_not_filterable_cant_filter stdout ----
thread 'main' panicked at 'called `Result::unwrap()` on an `Err` value: IoError(Os { code: 22, kind: InvalidInput, message: "Invalid argument" })', milli/src/index.rs:1217:62

---- update::settings::tests::setting_primary_key stdout ----
thread 'main' panicked at 'called `Result::unwrap()` on an `Err` value: IoError(Os { code: 22, kind: InvalidInput, message: "Invalid argument" })', milli/src/index.rs:1217:62

---- update::settings::tests::setting_searchable_recomputes_other_settings stdout ----
thread 'main' panicked at 'called `Result::unwrap()` on an `Err` value: IoError(Os { code: 22, kind: InvalidInput, message: "Invalid argument" })', milli/src/index.rs:1217:62

---- update::settings::tests::test_correct_settings_init stdout ----
thread 'main' panicked at 'called `Result::unwrap()` on an `Err` value: IoError(Os { code: 22, kind: InvalidInput, message: "Invalid argument" })', milli/src/index.rs:1217:62

---- update::settings::tests::test_disable_typo stdout ----
thread 'main' panicked at 'called `Result::unwrap()` on an `Err` value: IoError(Os { code: 22, kind: InvalidInput, message: "Invalid argument" })', milli/src/index.rs:1217:62

---- update::settings::tests::update_exact_words_normalization stdout ----
thread 'main' panicked at 'called `Result::unwrap()` on an `Err` value: IoError(Os { code: 22, kind: InvalidInput, message: "Invalid argument" })', milli/src/index.rs:1217:62

---- update::settings::tests::update_invalid_min_word_len_for_typo stdout ----
thread 'main' panicked at 'called `Result::unwrap()` on an `Err` value: IoError(Os { code: 22, kind: InvalidInput, message: "Invalid argument" })', milli/src/index.rs:1217:62

---- update::settings::tests::update_min_word_len_for_typo stdout ----
thread 'main' panicked at 'called `Result::unwrap()` on an `Err` value: IoError(Os { code: 22, kind: InvalidInput, message: "Invalid argument" })', milli/src/index.rs:1217:62


failures:
    index::tests::aborting_indexation
    index::tests::add_documents_and_set_searchable_fields
    index::tests::initial_field_distribution
    index::tests::put_and_retrieve_disable_typo
    index::tests::set_min_word_len_for_typos
    index::tests::set_searchable_fields_and_add_documents
    search::distinct::facet_distinct::test::test_number
    search::distinct::facet_distinct::test::test_string
    search::distinct::facet_distinct::test::test_strings
    search::facet::facet_distribution::tests::few_candidates_few_facet_values
    search::facet::facet_distribution::tests::many_candidates_few_facet_values
    search::facet::facet_distribution::tests::many_candidates_many_facet_values
    search::facet::facet_distribution_iter::tests::filter_distribution_all
    search::facet::facet_distribution_iter::tests::filter_distribution_all_stop_early
    search::facet::facet_range_search::tests::filter_range_decreasing
    search::facet::facet_range_search::tests::filter_range_increasing
    search::facet::facet_range_search::tests::filter_range_pinch
    search::facet::facet_range_search::tests::random_looking_index_snap
    search::facet::facet_sort_ascending::tests::filter_sort
    search::facet::facet_sort_descending::tests::filter_sort_descending
    search::facet::filter::tests::empty_db
    search::facet::filter::tests::escaped_quote_in_filter_value_2380
    search::facet::filter::tests::geo_radius_error
    search::facet::filter::tests::not_filterable
    search::test::test_is_authorized_typos
    update::clear_documents::tests::clear_documents
    update::delete_documents::tests::delete_documents_with_numbers_as_primary_key
    update::delete_documents::tests::delete_documents_with_strange_primary_key
    update::delete_documents::tests::filtered_placeholder_search_should_not_return_deleted_documents
    update::delete_documents::tests::geo_filtered_placeholder_search_should_not_return_deleted_documents
    update::delete_documents::tests::get_documents_should_not_return_deleted_documents
    update::delete_documents::tests::placeholder_search_should_not_return_deleted_documents
    update::delete_documents::tests::search_should_not_return_deleted_documents
    update::delete_documents::tests::stats_should_not_return_deleted_documents
    update::facet::bulk::tests::insert
    update::facet::bulk::tests::insert_delete_field_insert
    update::facet::delete::tests::delete_mixed_incremental_and_bulk
    update::facet::incremental::tests::append
    update::facet::incremental::tests::delete_from_end
    update::facet::incremental::tests::delete_from_start
    update::facet::incremental::tests::delete_shuffled
    update::facet::incremental::tests::in_place_level0_delete
    update::facet::incremental::tests::in_place_level0_insert
    update::facet::incremental::tests::many_field_ids_append
    update::facet::incremental::tests::many_field_ids_prepend
    update::facet::incremental::tests::merge_values
    update::facet::incremental::tests::prepend
    update::facet::incremental::tests::shuffle_merge_string_and_delete
    update::facet::incremental::tests::shuffled
    update::index_documents::tests::complex_documents
    update::index_documents::tests::delete_documents_then_insert
    update::index_documents::tests::empty_update
    update::index_documents::tests::geo_error
    update::index_documents::tests::index_2_times_documents_split_by_zero_document_indexation
    update::index_documents::tests::index_all_flavour_of_geo
    update::index_documents::tests::index_documents_check_exists_database
    update::index_documents::tests::index_documents_in_multiple_transforms
    update::index_documents::tests::index_documents_with_nested_fields
    update::index_documents::tests::index_documents_with_nested_primary_key
    update::index_documents::tests::index_documents_with_zeroes
    update::index_documents::tests::index_more_than_1000_positions_in_a_field
    update::index_documents::tests::index_more_than_256_fields
    update::index_documents::tests::invalid_documents_ids
    update::index_documents::tests::long_words_must_be_skipped
    update::index_documents::tests::mixed_geo_documents
    update::index_documents::tests::not_auto_generated_documents_ids
    update::index_documents::tests::primary_key_must_not_contain_floats
    update::index_documents::tests::primary_key_must_not_contain_whitespace
    update::index_documents::tests::reordered_auto_generated_documents_ids
    update::index_documents::tests::retrieve_a_b_c_nested_document_id
    update::index_documents::tests::retrieve_a_b_nested_document_id
    update::index_documents::tests::simple_auto_generated_documents_ids
    update::index_documents::tests::simple_document_merge
    update::index_documents::tests::simple_document_replacement
    update::index_documents::tests::simple_documents_replace
    update::index_documents::tests::test_facets_generation
    update::index_documents::tests::test_meilisearch_1714
    update::index_documents::tests::text_with_too_long_keys
    update::index_documents::tests::text_with_too_long_words
    update::prefix_word_pairs::tests::test_update
    update::settings::tests::default_displayed_fields
    update::settings::tests::default_stop_words
    update::settings::tests::mixup_searchable_with_displayed_fields
    update::settings::tests::set_and_reset_displayed_field
    update::settings::tests::set_and_reset_searchable_fields
    update::settings::tests::set_and_reset_stop_words
    update::settings::tests::set_and_reset_synonyms
    update::settings::tests::set_asc_desc_field
    update::settings::tests::set_distinct_field
    update::settings::tests::set_filterable_fields
    update::settings::tests::set_nested_distinct_field
    update::settings::tests::setting_impact_relevancy
    update::settings::tests::setting_not_filterable_cant_filter
    update::settings::tests::setting_primary_key
    update::settings::tests::setting_searchable_recomputes_other_settings
    update::settings::tests::test_correct_settings_init
    update::settings::tests::test_disable_typo
    update::settings::tests::update_exact_words_normalization
    update::settings::tests::update_invalid_min_word_len_for_typo
    update::settings::tests::update_min_word_len_for_typo

test result: FAILED. 82 passed; 100 failed; 1 ignored; 0 measured; 0 filtered out; finished in 4.96s

error: test failed, to rerun pass '--lib'

from milli.

curquiza avatar curquiza commented on June 2, 2024

Closing this issue, Milli has been integrated into Meilisearch, the tests are on the meilisearch repo now 😊

from milli.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.