Skip to content

Commit

Permalink
feat(boolean columns, resolves #384): const declaration
Browse files Browse the repository at this point in the history
To satisfy linter.
  • Loading branch information
pflanze committed Apr 11, 2024
1 parent 03b5912 commit 685db9f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/silo/storage/column_group.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -279,7 +279,7 @@ common::JsonValueType ColumnPartitionGroup::getValue(
return common::dateToString(date_columns.at(column).getValues().at(sequence_id));
}
if (bool_columns.contains(column)) {
OptionalBool value = bool_columns.at(column).getValues().at(sequence_id);
const OptionalBool value = bool_columns.at(column).getValues().at(sequence_id);
if (value.isNull()) {
return std::nullopt;
}
Expand Down

0 comments on commit 685db9f

Please sign in to comment.