Returns the version of the array schema object. */
| 214 | |
| 215 | /** Returns the version of the array schema object. */ |
| 216 | uint32_t version() const { |
| 217 | auto& ctx = ctx_.get(); |
| 218 | uint32_t version; |
| 219 | ctx.handle_error(tiledb_array_schema_get_version( |
| 220 | ctx.ptr().get(), schema_.get(), &version)); |
| 221 | return version; |
| 222 | } |
| 223 | |
| 224 | /** Returns the tile order. */ |
| 225 | tiledb_layout_t tile_order() const { |
nothing calls this directly
no test coverage detected