Skip to content

Commit

Permalink
Merge pull request #24 from ecmwf/fix-isConstant
Browse files Browse the repository at this point in the history
Fix Column::isConstant
  • Loading branch information
simondsmart authored Nov 18, 2024
2 parents d2afd90 + cd8c0eb commit 48741ff
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/odc/core/Column.cc
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,8 @@ bool Column::isConstant()
{
// FIXME
return coder().name() == "constant"
|| coder().name() == "constant_string";
|| coder().name() == "constant_string"
|| coder().name() == "long_constant_string";
}

//Column::Column(DataHandle *dataHandle) : dataHandle_(dataHandle), name_(), type_(IGNORE/*?*/), coder_(0) {}
Expand Down

0 comments on commit 48741ff

Please sign in to comment.