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

Method dump

tiledb/sm/cpp_api/group.h:473–481  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

471 }
472
473 std::string dump(const bool recursive) const {
474 auto& ctx = ctx_.get();
475 tiledb_ctx_t* c_ctx = ctx.ptr().get();
476 tiledb_string_t* str;
477 ctx.handle_error(
478 tiledb_group_dump_str_v2(c_ctx, group_.get(), &str, recursive));
479
480 return impl::convert_to_string(&str).value();
481 }
482
483 /**
484 * Consolidates the group metadata into a single group metadata file.

Callers 4

tiledb_query_get_statsFunction · 0.45
tiledb_stats_dumpFunction · 0.45
tiledb_stats_dump_strFunction · 0.45

Calls 6

tiledb_group_dump_str_v2Function · 0.85
convert_to_stringFunction · 0.85
handle_errorMethod · 0.80
getMethod · 0.45
ptrMethod · 0.45
valueMethod · 0.45

Tested by

no test coverage detected