Skip to content

Commit

Permalink
Add documentation
Browse files Browse the repository at this point in the history
  • Loading branch information
nguyenv committed Nov 1, 2024
1 parent 4e0cf67 commit 192de5e
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion libtiledbsoma/src/soma/soma_array.h
Original file line number Diff line number Diff line change
Expand Up @@ -1567,7 +1567,10 @@ class SOMAArray : public SOMAObject {
// Array associated with mq_
std::shared_ptr<Array> arr_;

// Array schema
// The TileDB ArraySchema. The schema is inaccessible when the TileDB Array
// is closed or opened in write mode which means we cannot use arr->schema()
// directly in those cases. Here, we store a copy of the schema so that it
// can be accessed in any mode
std::shared_ptr<ArraySchema> schema_;

// Array associated with metadata_. Metadata values need to be
Expand Down

0 comments on commit 192de5e

Please sign in to comment.