-
Notifications
You must be signed in to change notification settings - Fork 53
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Implement appendable tabular data (#679)
* append method in the client side * Support writing tables as CSV. * implemented appending to files * fix bug in a test * Add ability to parse file structure in .csvAdapter 📂 * fix some more bugs * fix some more tests * cleaned the files * fixed black and flake errors * implemented append method in the client side * implemented append method in the client side * added an integration test for the new append method * Added a CHANGELOG file * changed the append test to parametrized * fixed failing string test * fix append strng test * changed the type check in assert_frame_equal * Elaborate on changelog. --------- Co-authored-by: Seher Karakuzu <skarakuzu@Sehers-MacBook-Pro.local> Co-authored-by: Dan Allan <dallan@bnl.gov> Co-authored-by: Seher Karakuzu <skarakuzu1@bnl.gov> Co-authored-by: kari Barry <kezzsim@gmail.com>
- Loading branch information
1 parent
13e8f64
commit 428834d
Showing
12 changed files
with
398 additions
and
79 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
<!-- Add the recent changes in the code under the relevant category. | ||
Write the date in place of the "Unreleased" in the case a new version is released. --> | ||
|
||
# Changelog | ||
|
||
## Unreleased | ||
|
||
### Added | ||
|
||
* Support specifying the format that uploaded data will be stored in. | ||
* Support storing uploaded tabular data in CSV format. | ||
* Added a new HTTP endpoint, `PATCH /api/v1/table/partition/{path}` | ||
supporting appending rows to a tabular dataset. | ||
* Added a new method `DataFrameClient.append_partition`. | ||
|
||
### Removed | ||
|
||
### Changed | ||
|
||
### Fixed |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.