Skip to content

Commit

Permalink
feat(boolean columns): database_config: update DatabaseMetadata::getC…
Browse files Browse the repository at this point in the history
…olumnType()
  • Loading branch information
pflanze committed Apr 11, 2024
1 parent 12fc7b8 commit 30febdd
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/silo/config/database_config.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -176,6 +176,9 @@ ColumnType DatabaseMetadata::getColumnType() const {
}
throw std::runtime_error("Found pango lineage column without index: " + std::string(name));
}
if (type == ValueType::BOOL) {
return ColumnType::BOOL;
}
if (type == ValueType::INT) {
return ColumnType::INT;
}
Expand Down

0 comments on commit 30febdd

Please sign in to comment.