-
Notifications
You must be signed in to change notification settings - Fork 304
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 metadata mismatch #1920
Fix metadata mismatch #1920
Conversation
Codecov Report
@@ Coverage Diff @@
## branch-21.12 #1920 +/- ##
===============================================
Coverage ? 70.85%
===============================================
Files ? 143
Lines ? 9366
Branches ? 0
===============================================
Hits ? 6636
Misses ? 2730
Partials ? 0 Continue to review full report at Codecov.
|
if not isinstance(src_col_names, list): | ||
src_col_names = [src_col_names] | ||
dst_col_names = [dst_col_names] | ||
|
||
id_type = df[src_col_names[0]].dtype | ||
renumber_map = NumberMap(id_type=id_type) | ||
if type(df) is cudf.DataFrame: |
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.
why not use isinstance?
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.
Approved assuming Brad's feedback will be resolved.
rerun tests |
@gpucibot merge |
A recent change causes some of the dask's partition dataframe to have different types.
This PR ensures the dask partition after renumbering are the same as the initial dask dataframe
Note: Still looking for the root cause of this change