| 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. |
no test coverage detected