diff --git a/libtiledbsoma/src/utils/arrow_adapter.cc b/libtiledbsoma/src/utils/arrow_adapter.cc index 4336d3e11f..1fc6014ee5 100644 --- a/libtiledbsoma/src/utils/arrow_adapter.cc +++ b/libtiledbsoma/src/utils/arrow_adapter.cc @@ -465,8 +465,7 @@ std::unique_ptr ArrowAdapter::arrow_schema_from_tiledb_attribute( arrow_schema->name = strdup(attribute.name().c_str()); arrow_schema->metadata = nullptr; arrow_schema->flags = 0; - if (attribute.nullable() && - attribute.name() != SOMA_GEOMETRY_COLUMN_NAME) { + if (attribute.nullable() && attribute.name() != SOMA_GEOMETRY_COLUMN_NAME) { arrow_schema->flags |= ARROW_FLAG_NULLABLE; } else { arrow_schema->flags &= ~ARROW_FLAG_NULLABLE;