Skip to content

Commit

Permalink
fix (warning, and performance): remove const
Browse files Browse the repository at this point in the history
This prevented moves.

Refs: #390
  • Loading branch information
pflanze committed Apr 22, 2024
1 parent aa31389 commit afa8d3f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/silo/query_engine/actions/fasta.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ std::string getTableQuery(
join_clause += fmt::format(" AND key_table.key = t{}.key", idx);
}

const std::string duckdb_table_query = fmt::format(
std::string duckdb_table_query = fmt::format(
"SELECT key_table.key {} FROM {} key_table {} WHERE TRUE {}",
select_clause,
key_table_name,
Expand Down

0 comments on commit afa8d3f

Please sign in to comment.