Skip to content

Commit

Permalink
[c++] Fix upgrade-shape for dataframes with non-standard dimensions
Browse files Browse the repository at this point in the history
  • Loading branch information
johnkerl committed Dec 10, 2024
1 parent cbfa704 commit ea43e5b
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions libtiledbsoma/src/soma/soma_array.cc
Original file line number Diff line number Diff line change
Expand Up @@ -1029,6 +1029,7 @@ void SOMAArray::_set_soma_joinid_shape_helper(
for (unsigned i = 0; i < ndim; i++) {
const Dimension& dim = domain.dimension(i);
const std::string dim_name = dim.name();
std::cout << "HEY HERE IS DIM_NAME " << dim_name << "\n";
if (dim_name == "soma_joinid") {
if (dim.type() != TILEDB_INT64) {
throw TileDBSOMAError(std::format(
Expand Down

0 comments on commit ea43e5b

Please sign in to comment.