Open ugmuka opened 1 month ago
Thanks for your pull request, and welcome to our community! We require contributors to sign our Contributor License Agreement and we don't seem to have your signature on file. Check out this article for more information on why we have a CLA.
In order for us to review and merge your code, please submit the Individual Contributor License Agreement form attached above above. If you have questions about the CLA, or if you believe you've received this message in error, please reach out through a comment on this PR.
CLA has not been signed by users: @ugmuka
I have signed CLA.
@cla-bot check
The cla-bot has been summoned, and re-checked this pull request!
resolves #1198
Problem
The microbatch feature generates a DELETE SQL statement that includes a redundant USING clause. The current SQL looks like this:
This results in a Cartesian join, which is unnecessary. To resolve this issue, the USING clause should be removed.
Solution
Remove the USING clause from merge.sql.
Checklist