Skip to content

Commit

Permalink
Correct an format string error message
Browse files Browse the repository at this point in the history
  • Loading branch information
eddelbuettel committed Apr 2, 2024
1 parent 5450dfe commit 7bb42fb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions libtiledbsoma/src/utils/arrow_adapter.cc
Original file line number Diff line number Diff line change
Expand Up @@ -583,8 +583,8 @@ enum ArrowType ArrowAdapter::to_nanoarrow_type(std::string_view sv) {
else if (sv == "Z")
return NANOARROW_TYPE_LARGE_BINARY;

Check warning on line 584 in libtiledbsoma/src/utils/arrow_adapter.cc

View check run for this annotation

Codecov / codecov/patch

libtiledbsoma/src/utils/arrow_adapter.cc#L546-L584

Added lines #L546 - L584 were not covered by tests
else
throw TileDBSOMAError(fmt::format(
"ArrowAdapter: Unsupported TileDB datatype string: {} ", sv));
throw TileDBSOMAError(
fmt::format("ArrowAdapter: Unsupported Arrow format: {} ", sv));

Check warning on line 587 in libtiledbsoma/src/utils/arrow_adapter.cc

View check run for this annotation

Codecov / codecov/patch

libtiledbsoma/src/utils/arrow_adapter.cc#L586-L587

Added lines #L586 - L587 were not covered by tests
}

} // namespace tiledbsoma

0 comments on commit 7bb42fb

Please sign in to comment.