-
Notifications
You must be signed in to change notification settings - Fork 421
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
feat(python): add except_cols
argument to when_matched_update_all
and when_not_matched_insert_all
for excluding specific columns
#3098
Conversation
I am unsure on the naming of the argument. Is |
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## main #3098 +/- ##
==========================================
- Coverage 72.54% 72.52% -0.02%
==========================================
Files 128 128
Lines 41201 41201
Branches 41201 41201
==========================================
- Hits 29890 29882 -8
Misses 9409 9409
- Partials 1902 1910 +8 ☔ View full report in Codecov by Sentry. |
@mrjsj except sounds better. Can you rename it, then we are good to go |
@ion-elgreco forgot bare |
Except_cols is fine |
exclude
argument to when_matched_update_all
and when_not_matched_insert_all
for excluding specific columnsexcept_cols
argument to when_matched_update_all
and when_not_matched_insert_all
for excluding specific columns
@mrjsj can you squash your commits and sign off please? :) |
Signed-off-by: jsj <jsj>
c51f2e7
to
439c340
Compare
@ion-elgreco done - i hope. :) |
Hi All, thanks for adding this feature. In which release we can expect this via pip install? I tried with 0.23.1 but its not included in it guess. |
0.23.2 included it |
Description
Adds optional argument
exclude
to MergeBuilder functions, so that it is simpler to update all columns except a select few.Related Issue(s)
Documentation