-
Notifications
You must be signed in to change notification settings - Fork 1.9k
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
[Backport 2.x] [Star Tree] Lucene Abstractions for Star Tree File Formats #15436
Conversation
--------- Signed-off-by: Sarthak Aggarwal <[email protected]> (cherry picked from commit 9e5604b) Signed-off-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
❕ Gradle check result for b731ff1: UNSTABLE Please review all flaky tests that succeeded after retry and create an issue if one does not already exist to track the flaky failure. |
Codecov ReportAttention: Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## 2.x #15436 +/- ##
============================================
+ Coverage 71.60% 71.70% +0.09%
- Complexity 63465 63548 +83
============================================
Files 5208 5213 +5
Lines 297313 297339 +26
Branches 43276 43276
============================================
+ Hits 212896 213205 +309
+ Misses 66587 66335 -252
+ Partials 17830 17799 -31 ☔ View full report in Codecov by Sentry. |
The backport to
To backport manually, run these commands in your terminal: # Fetch latest updates from GitHub
git fetch
# Create a new working tree
git worktree add ../.worktrees/backport-2.x 2.x
# Navigate to the new working tree
pushd ../.worktrees/backport-2.x
# Create a new branch
git switch --create backport/backport-15436-to-2.x
# Cherry-pick the merged commit of this pull request and resolve the conflicts
git cherry-pick -x --mainline 1 331f29eaea36537ce09dcfe3d8eb78a934c00a20
# Push it to GitHub
git push --set-upstream origin backport/backport-15436-to-2.x
# Go back to the original working tree
popd
# Delete the working tree
git worktree remove ../.worktrees/backport-2.x Then, create a pull request where the |
Backport 9e5604b from #15278.