-
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 tiledb_field_get_nullable API (#5378)
The set of "query field" APIs offers a means to ask about the datatype and cell val num of a query result field without understanding whether the queried field is a dimension, attribute, or aggregate. For aggregates in particular `tiledb_field_datatype` and `tiledb_field_cell_val_num` allow a user to ask about the result type of their aggregate function operation, without having to read docs, source code, etc. To date, however, there has not been a way to ask if a query field can be null. This pull request adds that, via a C API `tiledb_field_get_nullable`. --- TYPE: C_API DESC: Add `tiledb_field_get_nullable` API --------- Co-authored-by: Beka Davis <[email protected]>
- Loading branch information
1 parent
11e35dc
commit e6e57be
Showing
4 changed files
with
141 additions
and
11 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