-
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 API to dump groups that returns a string handle. (#5367)
[SC-59017](https://app.shortcut.com/tiledb-inc/story/59017/add-tiledb-group-dump-str-v2-function-that-returns-a-string-handle) This PR adds a new C API `tiledb_group_dump_str_v2` that dumps a group into a `tiledb_string_t*`. This allows the string to be safely freed under certain circumstances (such as when debug and release CRT are mixed on Windows). The existing `tiledb_group_dump_str` API was deprecated. Migrating to the new API is straightforward and requires no changes to the public surface of the higher-level APIs. The C++ API and the C groups example are migrated in this PR. --- TYPE: C_API DESC: Added `tiledb_group_dump_str_v2` API that returns a `tiledb_string_t*`. The existing `tiledb_group_dump_str` API is deprecated.
- Loading branch information
1 parent
808640a
commit 871d2ed
Showing
6 changed files
with
98 additions
and
20 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
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
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