Skip to content

Commit

Permalink
cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
PSeitz committed May 9, 2024
1 parent 7d7a24e commit 7f8cb89
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 11 deletions.
1 change: 0 additions & 1 deletion quickwit/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -349,5 +349,4 @@ sasl2-sys = { git = "https://github.com/quickwit-oss/rust-sasl/", rev = "daca921
debug = false

[profile.release]
debug = true
lto = "thin"
6 changes: 3 additions & 3 deletions quickwit/quickwit-proto/protos/quickwit/search.proto
Original file line number Diff line number Diff line change
Expand Up @@ -317,15 +317,15 @@ message LeafSearchRequest {
SearchRequest search_request = 1;

// List of leaf requests, one per index.
repeated LeafRequestRef leaf_requests = 2;
repeated LeafRequestRef leaf_requests = 7;

// List of unique doc_mappers serialized as json.
repeated string doc_mappers = 3;
repeated string doc_mappers = 8;

// List of index uris
// Index URI. The index URI defines the location of the storage that contains the
// split files.
repeated string index_uris = 4;
repeated string index_uris = 9;
}

/// LeafRequestRef references data in LeafSearchRequest to deduplicate data.
Expand Down

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 0 additions & 4 deletions quickwit/quickwit-search/src/tests.rs
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,7 @@
// along with this program. If not, see <http://www.gnu.org/licenses/>.

use std::collections::{BTreeMap, BTreeSet};
use std::sync::Mutex;

use anyhow::Context;
use assert_json_diff::{assert_json_eq, assert_json_include};
use quickwit_config::SearcherConfig;
use quickwit_doc_mapper::tag_pruning::extract_tags_from_query;
Expand All @@ -38,9 +36,7 @@ use serde_json::{json, Value as JsonValue};
use tantivy::schema::OwnedValue as TantivyValue;
use tantivy::time::OffsetDateTime;
use tantivy::Term;
use tracing::{info_span, Instrument};

use self::collector::{make_merge_collector, IncrementalCollector};
use self::leaf::leaf_search;
use super::*;
use crate::find_trace_ids_collector::Span;
Expand Down

0 comments on commit 7f8cb89

Please sign in to comment.