-
-
Notifications
You must be signed in to change notification settings - Fork 2.1k
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: Implement a streaming merge sorted node #20960
feat: Implement a streaming merge sorted node #20960
Conversation
c6049f1
to
52632d1
Compare
374cfdf
to
ea36e6d
Compare
@@ -156,7 +156,7 @@ impl SeriesTrait for SeriesWrap<TimeChunked> { | |||
} | |||
fn split_at(&self, offset: i64) -> (Series, Series) { | |||
let (a, b) = self.0.split_at(offset); | |||
(a.into_series(), b.into_series()) |
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.
Drive by: this was producing wrong results for split_at
@@ -16,6 +16,11 @@ pub fn get_ideal_morsel_size() -> usize { | |||
}) | |||
} | |||
|
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.
drive-by: some docs for MorselSeq
Codecov ReportAttention: Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## main #20960 +/- ##
==========================================
+ Coverage 79.14% 79.24% +0.10%
==========================================
Files 1583 1583
Lines 225119 225388 +269
Branches 2581 2581
==========================================
+ Hits 178162 178613 +451
+ Misses 46367 46185 -182
Partials 590 590 ☔ View full report in Codecov by Sentry. |
No description provided.