-
Notifications
You must be signed in to change notification settings - Fork 600
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
refactor(batch): Remove unnecessary executor #2548
Conversation
create_table.open().await?; | ||
create_table.next().await?; | ||
create_table.close().await?; | ||
// let mut create_table = CreateTableExecutor::new( |
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.
Just delete them if not used.
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.
FYI, I fixed this test in this PR: #2550
After this PR merged, we've got to restore several test:
|
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.
Cool!
// #[tokio::test] | ||
#[allow(dead_code)] |
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.
// #[tokio::test] | |
#[allow(dead_code)] | |
#[ignore] | |
#[tokio::test] |
}), | ||
} | ||
} | ||
// fn build_create_table_plan(&self) -> PlanFragment { |
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.
Is this file still usable? @neverchanje
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.
I've confirmed that this file is completely unused. Pls remove them.
Codecov Report
@@ Coverage Diff @@
## main #2548 +/- ##
==========================================
+ Coverage 71.40% 71.48% +0.08%
==========================================
Files 689 685 -4
Lines 88555 88385 -170
==========================================
- Hits 63230 63183 -47
+ Misses 25325 25202 -123
Flags with carried forward coverage won't be shown. Click here to find out more.
📣 Codecov can now indicate which changes are the most critical in Pull Requests. Learn more |
What's changed and what's your intention?
Remove unnecessary executor after removing legacy java client.
Checklist
Refer to a related PR or issue link (optional)