updated build system

This commit is contained in:
2024-10-10 17:58:32 -05:00
parent 196aeae11f
commit 3c97c2d953
2 changed files with 7 additions and 7 deletions

View File

@ -110,7 +110,7 @@ auto db_select::dump() const -> std::string {
query << " GROUP BY ";
for (std::size_t idx = 0U; idx < context_->group_by.size(); idx++) {
if (idx > 0U) {
group << ", ";
query << ", ";
}
query << "\"" << context_->group_by.at(idx) << "\"";