-
Notifications
You must be signed in to change notification settings - Fork 185
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add REST client support for delete_fragments and delete_fragments_list (
#3923) * Rebase on dev * Add deserialization and test for fragments_list * Add serialization for FragmentTimestamps * Add deserialization C APIs * Add win32 capnp files * Use pointers to output params, return data in serialization * Add class FragmentsList with OL fragment for FragmentsList Handle class * Add Handle class for FragmentsList and use handle for deserialization * Rebase on dev * Address comments * Calculate char length with strlen * Use string_view in tiledb_fragments_list_get_fragment_uri * Rebase on dev * Address minor comments * Rename capnp structures * Fix CI failure * Add tiledb_array_delete_fragments_v2 which directly calls the Rest API * Move Rest call into C API for delete_fragments_list * Add uri to ArrayDeleteFragmentsTimestampsRequest * Add uri to FragmentsList capnp struct * Delete fragments inside of tiledb_deserialize_array_delete_fragments_timestamps_request * Delete fragments list in tiledb_deserialize_array_delete_fragments_list_request * Remove FragmentsList class and its handle class * Error handling optimization * Fix test issue, open between timestamps
- Loading branch information
1 parent
35df03d
commit 553979c
Showing
20 changed files
with
2,171 additions
and
70 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 |
---|---|---|
|
@@ -76,4 +76,6 @@ TEST_CASE( | |
FragmentInfo fi(ctx, array_name); | ||
fi.load(); | ||
REQUIRE(fi.fragment_num() == 1); | ||
|
||
remove_array(); | ||
} |
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.