MCPcopy Create free account
hub / github.com/TileDB-Inc/TileDB / version

Method version

tiledb/sm/cpp_api/array_schema.h:216–222  ·  view source on GitHub ↗

Returns the version of the array schema object. */

Source from the content-addressed store, hash-verified

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 {

Callers

nothing calls this directly

Calls 4

handle_errorMethod · 0.80
getMethod · 0.45
ptrMethod · 0.45

Tested by

no test coverage detected