-
Notifications
You must be signed in to change notification settings - Fork 221
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
feat: add 2.1 read path #2968
feat: add 2.1 read path #2968
Conversation
6835261
to
d216677
Compare
200acf0
to
65b00c1
Compare
5c685c0
to
ac98d0b
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.
test issues in lance datafusion, others LGTM
// TODO: Not that trivial, we might have rep/def that we need to encode / decode still | ||
todo!() |
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.
Should these be filled in for this PR? Or are we just not writing them yet so it doesn't matter?
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.
Yeah, there are a fair number of TODO's in this PR that I'm leaving for future PRs.
9cd485b
to
9a9748f
Compare
Cleanup after rebase Add a few more benchmarks Fix various bugs in page size / batch size / validity handling Add copyright header
9a9748f
to
ab0b936
Compare
Codecov ReportAttention: Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## main #2968 +/- ##
==========================================
+ Coverage 78.24% 78.30% +0.05%
==========================================
Files 240 240
Lines 77284 78355 +1071
Branches 77284 78355 +1071
==========================================
+ Hits 60470 61354 +884
- Misses 13696 13902 +206
+ Partials 3118 3099 -19
Flags with carried forward coverage won't be shown. Click here to find out more. ☔ View full report in Codecov by Sentry. |
Unlike the write path we were not able to get away with subtle changes to the existing traits. Most of the read traits needed to be duplicated. On the bright side, there is very little impact to the existing reader code though :)