Skip to content

Commit 5285bb7

Browse files
committed
Fix CI.
1 parent c63e4dc commit 5285bb7

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

test/src/unit-enumerations.cc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1141,7 +1141,7 @@ TEST_CASE_METHOD(
11411141
CHECK_NOTHROW(Array::evolve_array_schema(
11421142
ctx_.resources(), uri_, ase.get(), array->get_encryption_key()));
11431143
CHECK(array->reopen().ok());
1144-
CHECK_NOTHROW(array->load_all_enumerations());
1144+
CHECK_NOTHROW(array->load_all_enumerations(true));
11451145
auto all_schemas = array->array_schemas_all();
11461146
schema = array->array_schema_latest_ptr();
11471147
std::string schema_name_2 = schema->name();
@@ -1162,7 +1162,7 @@ TEST_CASE_METHOD(
11621162
CHECK_NOTHROW(Array::evolve_array_schema(
11631163
ctx_.resources(), uri_, ase.get(), array->get_encryption_key()));
11641164
CHECK(array->reopen().ok());
1165-
CHECK_NOTHROW(array->load_all_enumerations());
1165+
CHECK_NOTHROW(array->load_all_enumerations(true));
11661166
all_schemas = array->array_schemas_all();
11671167
schema = array->array_schema_latest_ptr();
11681168
std::string schema_name_3 = schema->name();

tiledb/sm/serialization/enumeration.cc

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,7 @@
4040
// clang-format on
4141

4242
#include "tiledb/sm/array_schema/enumeration.h"
43+
#include "tiledb/sm/array/array.h"
4344
#include "tiledb/sm/config/config.h"
4445
#include "tiledb/sm/enums/serialization_type.h"
4546
#include "tiledb/sm/serialization/enumeration.h"

0 commit comments

Comments
 (0)