-
Notifications
You must be signed in to change notification settings - Fork 36
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
Updated test cases for Update DML
statement
#160
Conversation
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## main #160 +/- ##
==========================================
+ Coverage 95.89% 95.94% +0.05%
==========================================
Files 19 19
Lines 1218 1234 +16
Branches 197 199 +2
==========================================
+ Hits 1168 1184 +16
Misses 25 25
Partials 25 25 ☔ View full report in Codecov by Sentry. |
if from_sql: | ||
from_sql = from_sql.replace("FROM", "USING", 1) | ||
where_sql = where_sql.replace("WHERE", "ON") | ||
|
||
expression_sql = f"{from_sql}{where_sql}{returning}" | ||
|
||
if from_sql: |
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.
Minor ask: Can we combine the two if from_sql checks in 1 single block?
@vijaypavann-db close if this is duplicate |
Merged as part of the PR #198 |
No description provided.