Skip to content

Commit

Permalink
Remove use of deprecated schema-display function (#3380)
Browse files Browse the repository at this point in the history
Replace usage of deprecated dump function with stream operator.
  • Loading branch information
jp-dark authored Nov 22, 2024
1 parent cee0d5b commit 8f1ec61
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion libtiledbsoma/test/unit_soma_group.cc
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ std::tuple<std::string, uint64_t> create_array(
// Open array for writing
Array array(ctx, uri, TILEDB_WRITE, TemporalPolicy(TimeTravel, timestamp));
if (LOG_DEBUG_ENABLED()) {
array.schema().dump();
std::cout << array.schema();
}

// Generate fragments in random order
Expand Down

0 comments on commit 8f1ec61

Please sign in to comment.