-
Notifications
You must be signed in to change notification settings - Fork 27
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
Add dropna
option to RawRowsAPI.insert_dataframe
#1789
Conversation
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## master #1789 +/- ##
==========================================
+ Coverage 93.00% 93.01% +0.01%
==========================================
Files 121 121
Lines 17673 17688 +15
==========================================
+ Hits 16436 16453 +17
+ Misses 1237 1235 -2
|
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.
Great quality of life improvement.
CHANGELOG.md
Outdated
## [7.44.1] - 2024-05-24 | ||
### Added | ||
- Missing parameter `timeout` to `client.transformations.preview`. | ||
- Missing parameter `timeout` to `client.transformations.preview`. |
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.
Time for an end-of-line linter?
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 think it will screw up a couple of the tests that rely on output matching. This change here is done automatically by my editor 😅
"f": [100, 200, 300], | ||
} | ||
) | ||
df.columns = ["a", "b", "a", "c", "a", "b"] |
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 set columns above with the data?
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.
Notice the duplicates 😉
4db0b81
to
243f314
Compare
[7.44.2] - 2024-05-30
Added
RawRowsAPI.insert_dataframe
now has a newdropna
setting (defaulting to True, as this would otherwise raise later).Checklist:
If a new method has been added it should be referenced in cognite.rst in order to generate docs based on its docstring.