-
Notifications
You must be signed in to change notification settings - Fork 24
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
implement the interfaces for range search, filter in pyramid #310
Conversation
Codecov ReportAttention: Patch coverage is @@ Coverage Diff @@
## main #310 +/- ##
==========================================
+ Coverage 90.90% 91.01% +0.10%
==========================================
Files 133 133
Lines 8459 8607 +148
==========================================
+ Hits 7690 7834 +144
- Misses 769 773 +4
Flags with carried forward coverage won't be shown. Click here to find out more.
Continue to review full report in Codecov by Sentry.
|
47e528e
to
d788725
Compare
d788725
to
01adeda
Compare
1d78937
to
acf15c7
Compare
bf78d31
to
e479f2a
Compare
25b6deb
to
d0f7f37
Compare
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.
LGTM
d0f7f37
to
f2ea40e
Compare
39205d3
to
9e54c7c
Compare
src/index/pyramid.cpp
Outdated
reader->Read(offset, sizeof(size_t), &binary_size); | ||
offset += sizeof(size_t); | ||
|
||
auto new_eader = std::make_shared<SubReader>(reader, offset, binary_size); |
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.
new_eader -> new_reader ?
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.
done
src/index/pyramid.h
Outdated
#include "pyramid_zparameters.h" | ||
#include "safe_allocator.h" | ||
|
||
namespace vsag { | ||
|
||
class SubReader : public Reader { | ||
public: | ||
SubReader(std::shared_ptr<Reader> parrent_reader, uint64_t start_pos, uint64_t size) |
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.
parrent_reader -> parent_reader
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.
done
Signed-off-by: jinjiabao.jjb <[email protected]>
9e54c7c
to
12602df
Compare
Signed-off-by: jinjiabao.jjb <[email protected]>
Signed-off-by: jinjiabao.jjb <[email protected]>
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.
LGTM
#166