Skip to content

Commit

Permalink
feat(boolean columns): database_config: add "bool" case to DatabaseCo…
Browse files Browse the repository at this point in the history
…nfigReader::readConfig()
  • Loading branch information
pflanze committed Apr 11, 2024
1 parent e6d5363 commit 12fc7b8
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/silo/config/database_config.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -288,6 +288,8 @@ DatabaseConfig DatabaseConfigReader::readConfig(const std::filesystem::path& con
return fmt::format_to(ctx.out(), "date");
case silo::config::ValueType::PANGOLINEAGE:
return fmt::format_to(ctx.out(), "pango_lineage");
case silo::config::ValueType::BOOL:
return fmt::format_to(ctx.out(), "bool");
case silo::config::ValueType::INT:
return fmt::format_to(ctx.out(), "int");
case silo::config::ValueType::FLOAT:
Expand Down

0 comments on commit 12fc7b8

Please sign in to comment.