Skip to content

Commit

Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fixes
Browse files Browse the repository at this point in the history
kounelisagis committed Jun 14, 2024

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
1 parent cb844d5 commit 24d2d54
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions test/regression/targets/sc-38300.cc
Original file line number Diff line number Diff line change
@@ -53,7 +53,7 @@ void create_array(const std::string& array_uri) {
void dump_schema(const std::string& array_uri) {
Context ctx;
Array array(ctx, array_uri, TILEDB_READ);
array.schema().dump();
std::cout << array.schema();
ArrayExperimental::load_all_enumerations(ctx, array);
array.schema().dump();
std::cout << array.schema();
}
2 changes: 1 addition & 1 deletion tools/src/commands/info_command.cc
Original file line number Diff line number Diff line change
@@ -197,7 +197,7 @@ void InfoCommand::print_schema_info() const {
THROW_NOT_OK(
array.open(QueryType::READ, EncryptionType::NO_ENCRYPTION, nullptr, 0));

array.array_schema_latest().dump(stdout);
std::cout << array.array_schema_latest() << std::endl;

// Close the array.
THROW_NOT_OK(array.close());

0 comments on commit 24d2d54

Please sign in to comment.