Move tiledb_ctx_alloc_with_error to the stable API header and use it in the C++ API. - #5667
Merged
teo-tsirpanis merged 2 commits intoOct 10, 2025
Conversation
teo-tsirpanis
commented
Oct 9, 2025
Comment on lines
-48
to
-52
| * that manages everything in the TileDB library. This is a provisional API | ||
| * which returns an error object when the context creation fails. This API will | ||
| * be replaced with a more proper "v2" of context alloc in the near future. The | ||
| * main goal is to use to this to capture potential failures to inform the v2 | ||
| * alloc design. |
Member
Author
There was a problem hiding this comment.
I removed this wording. I don't know how the v2 API was envisioned to be, but this existng API looks good to me on its own.
Member
Author
|
CI failure is unrelated and tracked in CORE-407. @ypatia should we merge this? |
Member
I re-run the job and now it passed. Given this is an unrelated spurious failure we are good to merge. |
teo-tsirpanis
deleted the
teo/core-405-move-tiledb_ctx_alloc_with_error-to-stable-headers-and-use
branch
October 10, 2025 10:48
This file contains hidden or 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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Move
tiledb_ctx_alloc_with_errorto the stable API header and use it in the C++ API.TYPE: C_API
DESC: The
tiledb_ctx_alloc_with_errorfunction was moved to the stable API header.TYPE: CPP_API
DESC: Improved error reporting when creating a context fails.