mirror of
https://github.com/qdrant/qdrant.git
synced 2026-08-06 10:00:58 -05:00
* submit an issue for unindexed field solve unindexed field issue when an index is created for the field also log a warning when issue is submitted fmt fix rebase problems get collection name without panicking better solving of issue remove outdated TODO add tests, fix GET /issues review fixes use `/` instead of `.` as separator fmt prepare extractor for time-based submission smol rename add check in search hook unindexed field creation in search and search_batch of rest update after rebase on `dev` remove submit from `struct_payload_index` solve issues inside of handlers, not in match router post-process at Collection level don't clone filters remove from openapi spec - Add hidden env variable to adjust slow search threshold - Remove Solution::None - Fix UnindexedField issue extractor - Add endpoint to openapi, but without response body spec - Move integration test to consensus_tests to set lower threshold * event-based integration * use typed Code * remove payload_index_schema hack, get through collection info * rename `notify` to `publish` * update after rebase * remove breakpoint * update after rebase * attach current payload schema to SlowQueryEvent * collect filters refs lazily * review fixes * review fixes * use regular config for setting the threshold, use 1.2 secs as default * fix checking against current schema for all conditions
25 lines
424 B
Rust
25 lines
424 B
Rust
pub mod common;
|
|
pub mod entry;
|
|
#[cfg(feature = "testing")]
|
|
pub mod fixtures;
|
|
pub mod id_tracker;
|
|
pub mod index;
|
|
pub mod payload_storage;
|
|
pub mod problems;
|
|
pub mod rocksdb_backup;
|
|
pub mod segment;
|
|
pub mod segment_constructor;
|
|
pub mod spaces;
|
|
pub mod telemetry;
|
|
|
|
mod compat;
|
|
pub mod data_types;
|
|
pub mod json_path;
|
|
pub mod types;
|
|
pub mod utils;
|
|
pub mod vector_storage;
|
|
|
|
#[macro_use]
|
|
extern crate num_derive;
|
|
extern crate core;
|