-
Notifications
You must be signed in to change notification settings - Fork 283
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
fix parse insert sql #126
fix parse insert sql #126
Conversation
Codecov ReportAll modified and coverable lines are covered by tests ✅
❗ Your organization needs to install the Codecov GitHub app to enable full functionality. Additional details and impacted files@@ Coverage Diff @@
## master #126 +/- ##
=======================================
Coverage 39.88% 39.88%
=======================================
Files 22 22
Lines 2856 2856
=======================================
Hits 1139 1139
Misses 1717 1717 ☔ View full report in Codecov by Sentry. |
if (fields.back() != ')') { | ||
fields.pop_back(); | ||
fields.back() = ')'; | ||
} | ||
if (values.back() != ')') { | ||
values.pop_back(); | ||
values.back() = ')'; | ||
} |
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.
之前是什么bug呢,什么现象?在pr说明注明一下。现在单测是不是覆盖了这些代码?
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.
LGTM
No description provided.