Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion test/src/unit-capi-string_dims.cc
Original file line number Diff line number Diff line change
Expand Up @@ -943,7 +943,7 @@ TEST_CASE_METHOD(
// Create dimension
tiledb_domain_t* domain;
tiledb_dimension_t* d;
char tmp;
char tmp = '\0';
int rc =
tiledb_dimension_alloc(ctx_, "d", TILEDB_STRING_ASCII, &tmp, nullptr, &d);
REQUIRE(rc == TILEDB_ERR);
Expand Down
2 changes: 1 addition & 1 deletion test/src/unit-cppapi-filter.cc
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ TEST_CASE("C++ API: Filter options", "[cppapi][filter]") {
REQUIRE(wrong_type_u == 4);

// Unsupported option
uint32_t window;
uint32_t window = 1;
REQUIRE_THROWS_AS(
f.set_option(TILEDB_BIT_WIDTH_MAX_WINDOW, &window), TileDBError);
REQUIRE_THROWS_AS(
Expand Down
2 changes: 1 addition & 1 deletion tiledb/api/c_api/filter/test/unit_capi_filter.cc
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ TEST_CASE(
REQUIRE(tiledb_status(rc) == TILEDB_OK);
rc = tiledb_filter_alloc(ctx, TILEDB_FILTER_BZIP2, &filter);
REQUIRE(tiledb_status(rc) == TILEDB_OK);
int value;
int value = 0;
SECTION("null context") {
rc = tiledb_filter_set_option(
nullptr, filter, TILEDB_COMPRESSION_LEVEL, &value);
Expand Down
Loading