-
Notifications
You must be signed in to change notification settings - Fork 184
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
Feature/decimal support using float #1589
Feature/decimal support using float #1589
Conversation
…f dataframe that has decimal columns
Please update the changelog in order to start CI tests. View the gpuCI docs here. |
for(size_t column_i = 0; column_i < column_indices.size(); column_i++) { | ||
col_names[column_i] = schema.get_name(column_indices[column_i]); | ||
cudf::type_id type_id = schema.get_dtype(column_indices[column_i]); |
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.
How is this checking for decimals here its checking for float64. What if the file had contained a float64 and not a decimal?
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.
I ask because you do decimal_cols.emplace_back below
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.
I had the same question and verified the it works just fine if there are floats and decimals or just one or just the other.
Fixes #1588