-
-
Notifications
You must be signed in to change notification settings - Fork 730
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
enable range query on fast field for u64 compatible types #1762
Conversation
Codecov Report
@@ Coverage Diff @@
## main #1762 +/- ##
==========================================
+ Coverage 94.06% 94.12% +0.05%
==========================================
Files 280 281 +1
Lines 52285 52824 +539
==========================================
+ Hits 49184 49719 +535
- Misses 3101 3105 +4
Help us with your feedback. Take ten seconds to tell us how you rate us. Have a feature suggestion? Share it here. |
518022c
to
ac53335
Compare
use crate::core::SegmentReader; | ||
use crate::error::TantivyError; | ||
use crate::query::explanation::does_not_match; | ||
use crate::query::range_query::range_query_ip_fastfield::IPFastFieldRangeWeight; | ||
use crate::query::{BitSetDocSet, ConstScorer, EnableScoring, Explanation, Query, Scorer, Weight}; | ||
use crate::schema::{Field, IndexRecordOption, Term, Type}; | ||
use crate::termdict::{TermDictionary, TermStreamer}; | ||
use crate::{DocId, Score}; | ||
use crate::{DateTime, DocId, Score}; | ||
|
||
pub(crate) fn map_bound<TFrom, TTo, Transform: Fn(&TFrom) -> TTo>( | ||
bound: &Bound<TFrom>, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
bound: &Bound<TFrom>, | |
bound: Bound<TFrom>, |
ac53335
to
e8917be
Compare
e8917be
to
c2fa44e
Compare
c2fa44e
to
b91c52a
Compare
…ss#1762) * enable range query on fast field for u64 compatible types * rename, update benches
No description provided.